Created
August 14, 2017 12:55
-
-
Save kutyel/69e3ac636972d84f43ef93995935cfe9 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 | |
| _.where(dc, { power: 70 }) | |
| // nativo | |
| dc.filter(x => x.power === 70) | |
| // output | |
| // > [ | |
| // > Object { name: "greenarrow", power: 70 }, | |
| // > Object { name: "greenlantern", power: 70 } | |
| // > ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment