-
-
Save boo1ean/c9510259353ca141f32c1d23baf940e3 to your computer and use it in GitHub Desktop.
This file contains 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
const cars = [ | |
{ | |
title: 'Opel', | |
power: 100, | |
}, | |
{ | |
title: 'Audi', | |
power: 200, | |
}, | |
{ | |
title: 'Mazda', | |
power: 100, | |
}, | |
] | |
const title = _.chain(cars) | |
.filter(car => car.power > 100) | |
.head() | |
.pick('title') | |
.value() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment