Skip to content

Instantly share code, notes, and snippets.

@zmts
Created June 19, 2016 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zmts/a755508a0960157dbb03f43f26b5f340 to your computer and use it in GitHub Desktop.
Save zmts/a755508a0960157dbb03f43f26b5f340 to your computer and use it in GitHub Desktop.
function checkPalindrom(str) {
strLowerCase = str.toLowerCase();
var reverse = strLowerCase.split('').reverse().join('');
if (reverse === strLowerCase) {
console.log(str + ' ' + 'is Palindrom');
} else {
console.log(str + ' ' + 'is not Palindrom');
}
}
checkPalindrom('Hello');
checkPalindrom('Eve');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment