I applied online. I interviewed at ServiceTitan in Sept 2023
Interview
A call with requiter about how great this company is (the typical staff) Next was an interview with one of their engineers. It was doing a hacker rank coding exercise with having someone looking over at the screen. I feel like they would have 1 spot for 100 candidates from all over the world. I feel they are constantly hiring, but looking at all the negative interview experience, with no offers. I feel they hardly give any offers.
Interview questions [3]
Question 1
First one was somethink like execution flow of following, I waht order they would be executed console.log("Start"); setTimeout(() => { console.log("Hello"); }, 0); const promise1 = new Promise((resolve, reject) => { resolve('Success!'); }); promise1.then((value) => { console.log(value); }); const promise2 = new Promise((resolve, reject) => { resolve('Success2!'); }); promise2.then((value) => { console.log(value); }); console.log("End");