Skip to content

Instantly share code, notes, and snippets.

@ksol
Created July 23, 2012 18:48
Show Gist options
  • Select an option

  • Save ksol/3165368 to your computer and use it in GitHub Desktop.

Select an option

Save ksol/3165368 to your computer and use it in GitHub Desktop.
ary = [1, 2, 3]
_.each(ary, function(item) { console.log(item); })
_(ary).each(function(item) { console.log(item); })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment