Lodash - 原型 plant 方法



语法

_.prototype.plant(value)

创建一个链序列克隆,并将值植入为包装值。

参数

  • value (*) − 要种植的值。

输出

  • (Object) − 返回新的 Lodash 包装器实例。

示例

var _ = require('lodash');  
function square(n) {
   return n * n;
}
 
var wrapped = _([1, 2]).map(square);
var other = wrapped.plant([3, 4]);
 
console.log(other.value());
console.log(wrapped.value());

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

命令

\>node tester.js

输出

[ 9, 16 ]
[ 1, 4 ]
lodash_seq.htm
广告