Lodash - prototype.value method



Syntax

_.prototype.value()

Executes the chain sequence to resolve the unwrapped value.

Output

  • (*) − Returns the resolved unwrapped value.

Example

var _ = require('lodash');  
var array = [1, 2, 3];
 
console.log(_(array).value());

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

Command

\>node tester.js

Output

[ 1, 2, 3 ]
lodash_seq.htm
Advertisements