Skip to content

Instantly share code, notes, and snippets.

@anthonygharvey
Last active March 6, 2019 01:20
Show Gist options
  • Save anthonygharvey/09a6dd43beb7508aefebac9abdcc9ac1 to your computer and use it in GitHub Desktop.
Save anthonygharvey/09a6dd43beb7508aefebac9abdcc9ac1 to your computer and use it in GitHub Desktop.
function reverse(string) {
return Array.from(str).reverse().join("")
}
reverse('JS is fun! 😄')
// => 😄 !nuf si SJ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment