Categories
JavaScript Answers

How to use Lodash to find and return an object from a JavaScript array?

Spread the love

To use Lodash to find and return an object from a JavaScript array, we use the find method.

For instance, we write

const song = _.find(songs, { id });

to call find with songs with { id } to find the object in the songs array with id property equal to id.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *