odin-default-js-exercises/palindromes
Michael Frank 321e943041 Update exercise number of each exercise 2021-05-12 19:39:31 +12:00
..
README.md Update exercise number of each exercise 2021-05-12 19:39:31 +12:00
palindromes.js added trailing semicolon to all function and module exports 2021-05-10 21:27:55 +12:00
palindromes.spec.js update tests, multiple exercises 2021-03-10 00:12:25 +13:00

README.md

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