Skip to content

Instantly share code, notes, and snippets.

@platypusrex
Last active October 15, 2015 04:06
Show Gist options
  • Save platypusrex/24fba3a9a6583355cffe to your computer and use it in GitHub Desktop.
Save platypusrex/24fba3a9a6583355cffe to your computer and use it in GitHub Desktop.
Javascript - Reverse String
function reverseString(str) {
return str.split('').reverse().join('');
}
reverseString('hello');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment