J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez OVO (Londres, Angleterre)
Entretien
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.
Questions d'entretien [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]