Skip to content

Instantly share code, notes, and snippets.

@Jontronics
Last active September 14, 2018 18:29
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 Jontronics/9dda1160debe644e5128c093bf9cb322 to your computer and use it in GitHub Desktop.
Save Jontronics/9dda1160debe644e5128c093bf9cb322 to your computer and use it in GitHub Desktop.
Aye whats the gist
function reverse(string) {
const array = string.split('')
return array;
}
console.log(reverse('hello-world'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment