odin-default-js-exercises/palindromes
aidwiz@yahoo.com 0513964dd5 done palindrome and caesar challenge 2019-09-30 20:08:20 +08:00
..
README.md Remove repeating line 2018-04-01 11:22:02 +05:00
palindrome.html done palindrome and caesar challenge 2019-09-30 20:08:20 +08:00
palindromes.js done palindrome and caesar challenge 2019-09-30 20:08:20 +08:00
palindromes.spec.js done palindrome and caesar challenge 2019-09-30 20:08:20 +08:00
test.js done palindrome and caesar challenge 2019-09-30 20:08:20 +08:00

README.md

Exercise XX - palindromes

Write a function that determines whether or not a given string is a palindrome.

A palindrome is a string that is spelled the same both forwards and backwards, usually without considering punctuation or word breaks:

some palindromes:

  • A car, a man, a maraca.
  • Rats live on no evil star.
  • Lid off a daffodil.
  • Animal loots foliated detail of stool lamina.
  • A nut for a jar of tuna.
palindromes('racecar') // true
palindromes('tacos') // false