J'ai postulé via un recruteur. J'ai passé un entretien chez codeSpark en janv. 2019
Entretien
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.
Questions d'entretien [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);