Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created May 30, 2018 08:33
Show Gist options
  • Save oguzhanaslan/e74afbc9dba7ab4d83c514f7ac7b221b to your computer and use it in GitHub Desktop.
Save oguzhanaslan/e74afbc9dba7ab4d83c514f7ac7b221b to your computer and use it in GitHub Desktop.
_.every vs every()
var value = [{a: 30310}, {b: 100303}, {c: 3040494}]
// lodash
_.every(value, (v,i) => {})
// JavaScript
value.every((v,i) => {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment