![]() |
VOOZH | about |
Lodash _.pickBy() method is used to return a copy of the object that is composed of the object properties predicate returns truthy for.
_.pickBy( object, [predicate] )This method returns the new object.
Example 1: In this example, we are using the _pickBy() method in which we are passing the _.isLength() method.
Output:
{'password': 123456}
Example 2: In this example, we are using the _pickBy() method in which we are passing the _.isNumber() method which returns true if the value is a number.
Output:
{'x': 1, 'z': 3}