Skip to content

Instantly share code, notes, and snippets.

@kutyel
Created August 14, 2017 13:01
Show Gist options
  • Save kutyel/e088b2f158ef4b84b15fc9428327fd5f to your computer and use it in GitHub Desktop.
Save kutyel/e088b2f158ef4b84b15fc9428327fd5f to your computer and use it in GitHub Desktop.
// underscore
_.chain(dc).pluck('name').contains('greenarrow').value()
// nativo
dc.map(x => x.name).includes('greenarrow')
// output
// > true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment