Skip to content

Instantly share code, notes, and snippets.

@h2ospace
Created March 14, 2013 19:30
Show Gist options
  • Save h2ospace/5164406 to your computer and use it in GitHub Desktop.
Save h2ospace/5164406 to your computer and use it in GitHub Desktop.
underscore: each, map
(function() {
// _.each([2, 5, 8], function(num) {
// console.log(num * 2);
// });
var x = _.map([2, 5, 8], function(num) {
return num * 2;
});
console.log(x);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment