I applied through other source. The process took 2 weeks. I interviewed at Identity Automation (Austin, TX) in June 2018
Interview
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.
Interview questions [2]
Question 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);
}