Lodash - at method



Syntax

_.at(object, [paths])

Creates an array of values corresponding to paths of object.

Arguments

  • object (Object) − The object to iterate over.

  • [paths] (...(string|string[])) − The property paths to pick.

Output

  • (Array) − Returns the picked values.

Example

var _ = require('lodash');
var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };

console.log(_.at(object, ['a[0].b.c', 'a[1]']));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 3, 4 ]
lodash_object.htm
Advertisements