Lodash _.prototype.value() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.prototype.value() 方法用于执行给定的链序列以解析展开的值。此方法具有别名_.prototype.toJSON和_.prototype.valueOf。
句法:
_.prototype.value()
参数:此方法不接受任何参数。
返回值:此方法返回解析后的展开值。
示例 1:
Javascript
// Requiring lodash library
const _ = require('lodash');
// Using the _.prototype.value() method
let result = _([5, 4, 7]).value();
// Display the result
console.log(result);
Javascript
// Requiring lodash library
const _ = require('lodash');
// Defining values
let values = { "f":3, "g":15 };
// Using the _.prototype.value() method
let unwrap_val = _(values).value();
// Display the result
console.log(unwrap_val);
输出:
[ 5, 4, 7 ]
示例 2:
Javascript
// Requiring lodash library
const _ = require('lodash');
// Defining values
let values = { "f":3, "g":15 };
// Using the _.prototype.value() method
let unwrap_val = _(values).value();
// Display the result
console.log(unwrap_val);
输出:
{ f: 3, g: 15 }