Candidatei-me de outra forma. O processo levou 2 semanas. Fui entrevistado pela Identity Automation (Austin, TX) em jun. de 2018
Entrevista
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.
Perguntas de entrevista [2]
Pergunta 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);
}