Skip to content

Instantly share code, notes, and snippets.

@Pindar
Created February 28, 2012 19:00
Show Gist options
  • Save Pindar/1934397 to your computer and use it in GitHub Desktop.
Save Pindar/1934397 to your computer and use it in GitHub Desktop.
Reverse String
function reverse(string) {
return (typeof string !== "string") ? "" : string.split('').reverse().join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment