Skip to content

Instantly share code, notes, and snippets.

@kevincennis
Created July 25, 2015 12:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevincennis/17a71a57af9fb6f0e796 to your computer and use it in GitHub Desktop.
Save kevincennis/17a71a57af9fb6f0e796 to your computer and use it in GitHub Desktop.
reverse
function reverse( str ) {
if ( str.length <= 1 ) {
return str;
}
return reverse( str.substr( 1 ) ) + str[ 0 ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment