Skip to content

Instantly share code, notes, and snippets.

@Reelix
Created November 23, 2016 22:37
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 Reelix/3c8c02fb65de4725753630bf856f626b to your computer and use it in GitHub Desktop.
Save Reelix/3c8c02fb65de4725753630bf856f626b to your computer and use it in GitHub Desktop.
// Function
function reverseString(str)
{
str = str.split("").reverse().join("");
alert(str);
}
// Button onclick event
reverseString('I want to be reversed :D');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment