Lodash - valuesIn method



Syntax

_.valuesIn(object)

Creates an array of the own and inherited enumerable string keyed property values of object.

Arguments

  • object (Object) − The object to query.

Output

  • (Array) − Returns the array of property values.

Example

var _ = require('lodash');
 
function Foo() {
   this.a = 1;
   this.b = 2;
}
 
Foo.prototype.c = 3;
var result = _.valuesIn(new Foo);
console.log(result);

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

Command

\>node tester.js

Output

[ 1, 2, 3 ]
lodash_object.htm
Advertisements