Skip to content

Instantly share code, notes, and snippets.

@mplatts
Created June 4, 2015 12:45
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 mplatts/2a2e0e31c9149ee89307 to your computer and use it in GitHub Desktop.
Save mplatts/2a2e0e31c9149ee89307 to your computer and use it in GitHub Desktop.
Underscore options
array = [1,2,3,4]
_.each array, (item) ->
console.log item
# OR
_(array).each (item) ->
console.log item
# Same goes with any collection or array function
_.uniq(array)
# OR
_(array).uniq()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment