Answers for "check if a string is a palindrome out output as 10"

C++
-1

check if palindrome

function isPalindrome(str) {
  str = str.toLowerCase();
  return str === str.split("").reverse().join("");
}
Posted by: Guest on August-17-2020

Code answers related to "check if a string is a palindrome out output as 10"

Browse Popular Code Answers by Language