Skip to content

Instantly share code, notes, and snippets.

@jonathanmarvens
Created September 20, 2013 09:12
Show Gist options
  • Save jonathanmarvens/6635043 to your computer and use it in GitHub Desktop.
Save jonathanmarvens/6635043 to your computer and use it in GitHub Desktop.
function isPalindrome( string ) {
if ( string.length <= 1 ) {
return true;
}
if ( string.charAt( 0 ) !== string.charAt( ( string.length - 1 ) ) ) {
return false;
}
return isPalindrome( string.substr( 1, ( string.length - 2 ) ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment