Draft
Palindrome Checker
Description:
Palindrome: A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward or forward.
Write a function that accepts a string as an argument and will return true if the string is a palindrome. It should return false if the string is NOT a palindrome. The argument passed through the function will always be a string.
Your function should be able to return true even if there is a capital letter in the string.
Example: palindromeChecker('Bob') returns true.
Strings
Arrays
Algorithms
Similar Kata:
Stats:
Created | Jul 12, 2016 |
Warriors Trained | 341 |
Total Skips | 39 |
Total Code Submissions | 591 |
Total Times Completed | 232 |
JavaScript Completions | 232 |
Total Stars | 3 |
% of votes with a positive feedback rating | 73% of 114 |
Total "Very Satisfied" Votes | 68 |
Total "Somewhat Satisfied" Votes | 30 |
Total "Not Satisfied" Votes | 16 |
Total Rank Assessments | 116 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |