Skip to content

Instantly share code, notes, and snippets.

@ceaksan
Last active September 18, 2015 19:48
Show Gist options
  • Save ceaksan/bf8d0520a450f2f6691f to your computer and use it in GitHub Desktop.
Save ceaksan/bf8d0520a450f2f6691f 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