Created
August 14, 2017 13:01
-
-
Save kutyel/e088b2f158ef4b84b15fc9428327fd5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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