Skip to content

Instantly share code, notes, and snippets.

@anthonygharvey
Last active March 6, 2019 01:22
Show Gist options
  • Save anthonygharvey/42b7f1a4aa57a3c2f054172056da1083 to your computer and use it in GitHub Desktop.
Save anthonygharvey/42b7f1a4aa57a3c2f054172056da1083 to your computer and use it in GitHub Desktop.
function reverse(string) {
return string.split('').reverse().join('')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment