Skip to content

Instantly share code, notes, and snippets.

@alekskorovin
Created October 27, 2014 15:02
Show Gist options
  • Save alekskorovin/a24cd054457f2ec200d0 to your computer and use it in GitHub Desktop.
Save alekskorovin/a24cd054457f2ec200d0 to your computer and use it in GitHub Desktop.
With underscore
var arr = [1, 2, 3, 4];
var consoleLogEach = function(element, index, list) {
console.log(element);
}
_.each(arr, consoleLogEach);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment