Envié una solicitud electrónica. El proceso duró 3 semanas. Acudí a una entrevista en 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.
Preguntas de entrevista [1]
Pregunta 1
```javascript
let numbers = [];
for(var i = 0; // terminating condition: i less than 5; i++);{
numbers.push(i+1);
}
```
What does numbers contain?