Underscore.JS - value method



Syntax

_.chain(object).value()

value method returns the value of a wrapped object. See the below example:

Example

var _ = require('underscore');

var result = _.chain([1, 4, 3]).sort().value();

console.log(result);

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

Command

\>node tester.js

Output

[1, 3, 4]
underscorejs_chaining.htm
Advertisements