Skip to content

Instantly share code, notes, and snippets.

@jonkemp
Last active August 29, 2015 13:56
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 jonkemp/9277321 to your computer and use it in GitHub Desktop.
Save jonkemp/9277321 to your computer and use it in GitHub Desktop.
Reverse a string using JavaScript.
function reverseIt(str) {
return str.split('').reverse().join('');
}

reverseIt

Put a string down, flip it and reverse it.

Example

reverseIt('car');
// "rac"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment