Skip to content

Instantly share code, notes, and snippets.

Created December 1, 2015 03:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/9064da7cd7fab673c0a7 to your computer and use it in GitHub Desktop.
Save anonymous/9064da7cd7fab673c0a7 to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/dbess1 's solution for Bonfire: Check for Palindromes
// Bonfire: Check for Palindromes
// Author: @dbess1
// Challenge: http://www.freecodecamp.com/challenges/bonfire-check-for-palindromes
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function palindrome(str) {
var word = str.toLowerCase().replace(/[\W_]/g, "");
var reversedWord = word.split("").reverse().join("");
return word === reversedWord;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment