Solicité el puesto por otro medio. El proceso duró 2 semanas. Acudí a una entrevista en Identity Automation (Austin, TX) en jun 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.
Preguntas de entrevista [2]
Pregunta 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);
}