Skip to content

Instantly share code, notes, and snippets.

@pablocortez
Created February 26, 2017 23:34
Show Gist options
  • Save pablocortez/e3f3855b7663eec2612cadf8b471fac5 to your computer and use it in GitHub Desktop.
Save pablocortez/e3f3855b7663eec2612cadf8b471fac5 to your computer and use it in GitHub Desktop.
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