Question d’entretien chez Hughes Systique

1. Write code to check wether string is palindrome

Réponse à la question d'entretien

Utilisateur anonyme

17 mai 2019

function palindrome(str){ var len = str.length; var mid = Math.floor(len/2); for(var i=0; i

1