Skip to content

Instantly share code, notes, and snippets.

@ohall
Created November 19, 2014 20:42
Show Gist options
  • Select an option

  • Save ohall/bb810c30ce7f4a492d52 to your computer and use it in GitHub Desktop.

Select an option

Save ohall/bb810c30ce7f4a492d52 to your computer and use it in GitHub Desktop.
map and array with underscore
var collection = [1, 2, 3];
_.map(collection, function(val, index, array){ return num * 3; });
// returns array -> [3, 6, 9]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment