J'ai postulé en ligne. Le processus a pris 3 semaines. J'ai passé un entretien chez American Express (Phoenix, AZ)
Entretien
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.
Questions d'entretien [1]
Question 1
```javascript
let numbers = [];
for(var i = 0; // terminating condition: i less than 5; i++);{
numbers.push(i+1);
}
```
What does numbers contain?