I applied online. The process took 2 weeks. I interviewed at OVO (London, England)
Interview
Had a call after two weeks, the first week they didn't turn up and said we had technical issues.
The second week, JavaScript tech screen by sharing my text editor asked 2 simple JS questions which I listed below the last one was a bit hard and non-relevant to any real-life programming scenario.
Interview questions [3]
Question 1
Given an array, return nth number of array elements.
Write a function which takes an array and number and if the number given is greater than array length then return element before last element.
for example take(['a', 'b', 'c', 'd'], 10) should return [a, b, c, d, c, b, a, b, c, d]