Skip to content

Instantly share code, notes, and snippets.

@lukebarton
Created January 24, 2011 22:32
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 lukebarton/794116 to your computer and use it in GitHub Desktop.
Save lukebarton/794116 to your computer and use it in GitHub Desktop.
Underscore Example
_.map([1, 2, 3], function(n){ return n * 2; });
_([1, 2, 3]).map(function(n){ return n * 2; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment