Lodash - prototype.value 方法



语法

_.prototype.value()

执行链序列以解析包装值。

输出

  • (*) - 返回已解析的包装值。

示例

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

将上述程序保存在 tester.js 中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

[ 1, 2, 3 ]
lodash_seq.htm
广告