Skip to content

Instantly share code, notes, and snippets.

@adedayojs
Created January 15, 2020 10:41
Show Gist options
  • Save adedayojs/91f85311d19fff14196f9e863ef33440 to your computer and use it in GitHub Desktop.
Save adedayojs/91f85311d19fff14196f9e863ef33440 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