odin-javascript-exercises/09 palindromes
Benjo Kho 55cfb173d8 Order exercise folders
Ordered the exercise folders by placing their numbers in their folder name
2021-08-07 14:21:26 +08:00
..
palindromes.js Order exercise folders 2021-08-07 14:21:26 +08:00
palindromes.spec.js Order exercise folders 2021-08-07 14:21:26 +08:00
README.md Order exercise folders 2021-08-07 14:21:26 +08:00

Exercise 09 - 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