I applied online. The process took 1 week. I interviewed at Linked Helper in May 2025
Interview
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.
Interview questions [1]
Question 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))