Ho presentato la mia candidatura online. La procedura ha richiesto una settimana. Ho sostenuto un colloquio presso Linked Helper nel mese di mag 2025
Colloquio
On the HR screening (first stage) the HR will check your activity monitor, ask to show screen, and then will paste images with code to google doc. There are questions that junior developers might remember answer to, if you're senior, you will likely deem that code a joke. 2/3 fails and you don't pass to algorithmic task.
Domande di colloquio [1]
Domanda 1
Here's code, tell what console.logs will be and in which order
const p = Promise.reject()
p
.then(() => console.log(1))
.catch(() => console.log(2))
.then(() => console.log(3))
p
.then(() => console.log(4))
.catch(() => console.log(5))
.then(() => console.log(6))