Question d’entretien chez 50onRed

Write a function that reverses an array without using built in .reverse(), follow up question centered around possible issues with my code and how I could make it better.

Réponse à la question d'entretien

Utilisateur anonyme

7 mars 2017

I more or less wrote a reverse loop using a temp array and returned that array. My answer to the follow up question was to loop from both ends at the same time and reverse it in-place.