Skip to content

Instantly share code, notes, and snippets.

@Vigowebs
Last active February 17, 2019 07:53
Show Gist options
  • Save Vigowebs/fcc5e291845f129ef72711eab3d745a0 to your computer and use it in GitHub Desktop.
Save Vigowebs/fcc5e291845f129ef72711eab3d745a0 to your computer and use it in GitHub Desktop.
function reverse (str) {
if (str === "") {
return "";
} else {
return reverse(str.substr(1)) + str.charAt(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment