Last active
July 23, 2021 15:32
-
-
Save grigorkh/a38ec0dcfde10a6ef43bdc7a552552b1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isPalindrome(str) { | |
str = str.replace(/\W/g, '').toLowerCase(); | |
return (str == str.split('').reverse().join('')); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment