odin-default-js-exercises/palindromes
Musabii 4d82ea16db
added a test and changed an old one
The second test would originally test if it works with upper-case letters and punctuation. but the description of the test is "works with punctuation". I think it is better to either put both in the description or make a new test that solely tests each different thing.
2020-06-25 11:17:48 +02:00
..
README.md Remove repeating line 2018-04-01 11:22:02 +05:00
palindromes.js Transform 'let' in 'const' where needs be 2018-08-07 11:25:16 +01:00
palindromes.spec.js added a test and changed an old one 2020-06-25 11:17:48 +02:00

README.md

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