First conversion to know each other and get deatails about the company, after that the tech interview that was 1:30 hours.
In the tech interview we discussed also about previous projects.
El proceso duró 1 semana. Acudí a una entrevista en Next Insurance (New York, NY)
Entrevista
The interview composed of 3 parts:
1. At the begining there is company and applications overview.
2. "Tell me about yourself, what are you doing these days". In addition, tell me about a problem and how you fixed it.
3. Technical questions
Given the following code, what will be printed?
const attr[]={17,58,35,15};
for (var i=0;i<attr.length;i++;) {
setTimeout[function()=>{
console.log("index is: " + i + ", value is: " + attr[i]);
}, 1000);
}