Skip to content

Instantly share code, notes, and snippets.

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 dbess1/a05c83a6dcdbe07b9665 to your computer and use it in GitHub Desktop.
Save dbess1/a05c83a6dcdbe07b9665 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