Underscore.JS - values method



Syntax

_.values(object)

values method return all the values of object's properties. See the below example −

Example

var _ = require('underscore');

// Example 1
var result = _.values({one: 1, two : 2, three: 3});
console.log(result);

// Example 2
result = _.values({ name: 'Sam', age: 30});
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 ]
[ 'Sam', 30 ]
underscorejs_mapping_objects.htm
Advertisements