I applied online. The process took 4 weeks. I interviewed at Photobox (Amsterdam) in May 2022
Interview
I applied via Linkedin.
1. Call from Recruiter
2. Manager Interview
3. Coding Interview
4. System Design
The process is like 1 month+ and I pass all steps then the recruiter called me for rejection without reason and feedback. I sent a message to the recruiter for a feedback session because I believe I did well in interviews and they respond to me 'let me talk with engineers' and it was 2 weeks ago.
The manager interview step was good she was positive.
The coding session was very easy and the average JS engineer can pass but the interviewers are not looking happy and sometimes they don't know what they need to ask.
System design is medium, they are asking you to design a photo upload system.
Interview questions [6]
Question 1
Write the following utility;
import {acc, total, reset} from "index.js"
acc(2 ,3) // 5
acc(1,2) // 3
total() // 8
reset() // 0
total() // 0
and add promise support like this;
acc(Promise.resolve(1),2) // 3
and write unit tests for this with Jest.