Candidatei-me online. O processo levou 3 semanas. Fiz uma entrevista na empresa American Express (Phoenix, AZ).
Entrevista
First there was a normal Phone screen, then a Tech screen that had live coding with a prospective team, then another phone screen, then a final tech screen that consisted of multiple questions with a final live coding question in react.
Perguntas de entrevista [1]
Pergunta 1
```javascript
let numbers = [];
for(var i = 0; // terminating condition: i less than 5; i++);{
numbers.push(i+1);
}
```
What does numbers contain?