Lodash - prototype.commit 方法
语法
_.prototype.commit()
执行链序列并返回包装后的结果。
输出
(对象) − 返回新的 lodash 包装实例。
示例
var _ = require('lodash'); var array = [1, 2]; var wrapped = _(array).push(3); wrapped = wrapped.commit(); console.log(array);
将上述程序保存在 tester.js 中。运行以下命令以执行该程序。
命令
\>node tester.js
输出
[ 1, 2, 3 ]
lodash_seq.htm
广告