Ho presentato la mia candidatura online. La procedura ha richiesto 3 settimane. Ho sostenuto un colloquio presso American Express (Phoenix, AZ)
Colloquio
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.
Domande di colloquio [1]
Domanda 1
```javascript
let numbers = [];
for(var i = 0; // terminating condition: i less than 5; i++);{
numbers.push(i+1);
}
```
What does numbers contain?