Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers, etc.
The _.prototype.value() method is used to execute the given chain sequence in order to resolve the unwrapped value. This method has the aliases _.prototype.toJSON and _.prototype.valueOf.
Syntax:
_.prototype.value()
Parameters: This method does not accept any parameter.
Return Value: This method returns the resolved unwrapped value.
Example 1:
Javascript
const _ = require( 'lodash' );
let result = _([5, 4, 7]).value();
console.log(result);
|
Output:
[ 5, 4, 7 ]
Example 2:
Javascript
const _ = require( 'lodash' );
let values = { "f" :3, "g" :15 };
let unwrap_val = _(values).value();
console.log(unwrap_val);
|
Output:
{ f: 3, g: 15 }