odin-default-js-exercises/09_palindromes
Adelina Moroaca 1dce662019 Add palindrome solution 2023-12-23 16:12:05 +02:00
..
solution Update palindromes to handle numbers better 2023-05-20 02:47:17 -04:00
README.md Rename folders with numbers and underscores 2021-08-07 14:52:11 +08:00
palindromes.js Add palindrome solution 2023-12-23 16:12:05 +02:00
palindromes.spec.js Add palindrome solution 2023-12-23 16:12:05 +02: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