Ho presentato la mia candidatura tramite un selezionatore. Ho sostenuto un colloquio presso codeSpark nel mese di gen 2019
Colloquio
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.
Domande di colloquio [1]
Domanda 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);