Skip to content

Instantly share code, notes, and snippets.

@theWhiteFox
Created April 13, 2018 15:18
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 theWhiteFox/5223241e21dcba9129a9ae5691bddb35 to your computer and use it in GitHub Desktop.
Save theWhiteFox/5223241e21dcba9129a9ae5691bddb35 to your computer and use it in GitHub Desktop.
Reverse a string created by steTheWhiteFox - https://repl.it/@steTheWhiteFox/Reverse-a-string
function reverse(string) {
return string.split('').reverse().join();
}
reverse('testing');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment