I applied online. The process took 2 days. I interviewed at NeoSOFT in July 2025
Interview
They asked about basic JavaScript questions and practical coding tasks, commonly seen in interviews, and used an online JavaScript compiler to write, test, and debug code in real time efficiently.
what is the output of this
console.log("Start");
setTimeout(() => {
console.log("setTimeout");
}, 0);
Promise.resolve().then(() => {
console.log("Promise.then");
});
console.log("End");