odin-javascript-exercises/palindromes
Marvin Gay ad1c0c407f Revert "Merge branch 'jest'"
This reverts commit f76e9e108f.
2021-05-12 22:10:23 -04:00
..
palindromes.js Revert "Merge branch 'jest'" 2021-05-12 22:10:23 -04:00
palindromes.spec.js Revert "run jest-codemods on .spec.js files, move generator-exercises back in" 2021-05-08 11:32:41 -07:00
README.md Revert "Merge branch 'jest'" 2021-05-12 22:10:23 -04:00

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