¿Cómo verificar si una string pasada es palíndromo o no en JavaScript?
Dada una string, nuestra tarea es encontrar la string si es palíndromo o no. Example: Input : «race» Output : passed string is not a palindrome Explanation : if we write «race» in reverse that is «ecer» it not matches with first string so it is not a palindrome. Example 2: Input : «hellolleh» Output … Continue reading «¿Cómo verificar si una string pasada es palíndromo o no en JavaScript?»