I applied online. The process took 3 weeks. I interviewed at American Express (Phoenix, AZ)
Interview
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.
Interview questions [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?