Question d’entretien chez Estech

Write a function that takes a palindrome (string) and returns the string reversed.

Réponse à la question d'entretien

Utilisateur anonyme

4 sept. 2017

(str) => str.split('').reverse().join('');

1