Skip to content

Instantly share code, notes, and snippets.

@dmidlo
Last active November 22, 2015 22:16
Show Gist options
  • Save dmidlo/2f2fe762f3bda0534eb4 to your computer and use it in GitHub Desktop.
Save dmidlo/2f2fe762f3bda0534eb4 to your computer and use it in GitHub Desktop.
function reverseString(str) {
str = ((str.split('')).reverse()).join('');
return str;
}
reverseString("hello");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment