Skip to content

Instantly share code, notes, and snippets.

@lienista
Last active August 28, 2018 04:07
Show Gist options
  • Select an option

  • Save lienista/c4356a11fdd57bda51f9c6354f673c80 to your computer and use it in GitHub Desktop.

Select an option

Save lienista/c4356a11fdd57bda51f9c6354f673c80 to your computer and use it in GitHub Desktop.
const recursiveReverseString = (originalString) => {
return originalString ? recursiveReverseString(originalString.substr(1)) + originalString.charAt(0): '';
}
let r = recursiveReverseString('hello');
console.log(r);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment