odin-js-fundamentals-part-5/09_palindromes
NetMan 9d02464e9d Passed all remaining tests in exercise 09
Now replacing punctuation and spaces with blank, converting to lower case
2024-01-11 10:13:14 +01:00
..
solution Initial commit 2024-01-11 09:52:05 +01:00
README.md Initial commit 2024-01-11 09:52:05 +01:00
palindromes.js Passed all remaining tests in exercise 09 2024-01-11 10:13:14 +01:00
palindromes.spec.js Passed all remaining tests in exercise 09 2024-01-11 10:13:14 +01: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