Skip to content

Instantly share code, notes, and snippets.

@rcdexta
Created March 28, 2019 04:48
Show Gist options
  • Save rcdexta/d70f25587a104554ac5dad93e4e6965f to your computer and use it in GitHub Desktop.
Save rcdexta/d70f25587a104554ac5dad93e4e6965f to your computer and use it in GitHub Desktop.
every function
const elements = ["cat", "dog", "bat"]
_.every(elements, el => el.length == 3)
elements.every(el => el.length == 3) //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment