Skip to content

Instantly share code, notes, and snippets.

@pbrandiezs
Created May 18, 2021 13:51
Show Gist options
  • Save pbrandiezs/5e954112c2e4cc103713a216e77693fe to your computer and use it in GitHub Desktop.
Save pbrandiezs/5e954112c2e4cc103713a216e77693fe to your computer and use it in GitHub Desktop.
const palindrome = str => {
str = str.toLowerCase()
return(str === str.split('').reverse().join(''))
}
palindrome("Kayak");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment