Skip to content

Instantly share code, notes, and snippets.

@Maciek416
Created June 9, 2011 21:22
Show Gist options
  • Select an option

  • Save Maciek416/1017784 to your computer and use it in GitHub Desktop.

Select an option

Save Maciek416/1017784 to your computer and use it in GitHub Desktop.
Reverse
var a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var b = _(a).reduceRight(function(memo,n){ return memo.concat([n]); },[]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment