I applied through a recruiter. I interviewed at codeSpark in Jan 2019
Interview
Phone interview with technical questions.
General and JS questions .
Then to do home project exercise.
Mission, is to improve it a bit by implementing some additional features.
Please focus on good coding practices.
Interview questions [1]
Question 1
what is the value of g after the followinf code block runs?
const f = n=> n <= 1 ? 1:n * f(n-1);
let g = f(4);