Skip to content

Instantly share code, notes, and snippets.

@joyeecheung
Created September 5, 2014 04:12
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 joyeecheung/417366022fd03b9b6b67 to your computer and use it in GitHub Desktop.
Save joyeecheung/417366022fd03b9b6b67 to your computer and use it in GitHub Desktop.
Reverse a list recursively.
function reverse(a) {
return a.length ? reverse(a.slice(1)).concat([a[0]]) : [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment