Skip to content

Instantly share code, notes, and snippets.

@base698
Created March 8, 2016 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save base698/b8a7936f9935759e3659 to your computer and use it in GitHub Desktop.
Save base698/b8a7936f9935759e3659 to your computer and use it in GitHub Desktop.
function reverse(string) {
if(string.length == 1) {
return string;
}
return string.charAt(string.length - 1) + reverse(string.slice(0, string.length - 1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment