Ho presentato la mia candidatura online. La procedura ha richiesto 2 giorni. Ho sostenuto un colloquio presso NeoSOFT nel mese di lug 2025
Colloquio
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");