Skip to content

Instantly share code, notes, and snippets.

@jgresalfi
Created September 4, 2016 20:22
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 jgresalfi/7226ee44651b8582bc5ac595f764a3d9 to your computer and use it in GitHub Desktop.
Save jgresalfi/7226ee44651b8582bc5ac595f764a3d9 to your computer and use it in GitHub Desktop.
Reversing strings
function reverseString(str) {
var strArray = str.split("");
strArray.reverse("");
return strArray.join("");
}
reverseString("hello");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment