logo CodeStepByStep logo

isPalindrome

Language/Type: JavaScript recursion string
Author: Melissa Hovik (on 2016/09/25)

Write a recursive function named isPalindrome that accepts a string parameter and returns true if the string is the same forwards as backwards, ignoring capitalization. For example, the call of isPalindrome("Taco cat") should return true.

Constraints:

  • Do not use loops or auxiliary data structures; solve the problem recursively.

Function: Write a JavaScript function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.