Ho presentato la mia candidatura tramite un'altra fonte. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso Identity Automation (Austin, TX) nel mese di giu 2018
Colloquio
1 initial phone screen, 1 online test (timed IQ test + personality test), 2 one hour technical interviews online, 1 non-technical on site interview for 2.5 hours. They were very fast at getting back to me after the interviews were finished.
Domande di colloquio [2]
Domanda 1
What does this do? How can you fix it?
const arr = [10, 12, 15, 21];
for (var i = 0; i < arr.length; i++) {
setTimeout(function() {
console.log('The index of this number is: ' + i);
}, 3000);
}