Me postulé en línea. El proceso tomó 2 semanas. Acudí a una entrevista en OVO (Londres, Inglaterra)
Entrevista
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.
Preguntas de entrevista [3]
Pregunta 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]