odin-default-js-exercises/palindromes
Hifilo 9eb942909e
09 Palindromes: Replace Regex Solution (#319)
* Replaces the original regex method, with more familiar methods
* Add descriptive comments for clarity
2023-03-22 20:42:17 -05:00
..
README.md Added jest 2021-05-17 23:46:49 +01:00
palindromes.js 09 Palindromes: Replace Regex Solution (#319) 2023-03-22 20:42:17 -05:00
palindromes.spec.js Merge branch 'main' into km-testing-jest-2 2021-05-17 18:56:52 -04: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