Lodash - pullAll 方法



语法

_.pullAll(array, values)

获取数组除了最后一个外所有元素。

参数

  • array (数组) − 要修改的数组。

  • values (数组) − 要移除的值。

输出

  • (数组) − 返回数组。

示例

var _ = require('lodash');
var list = [1, 2, 3, 2, 5, 6, 2];

_.pullAll(list,[2,5])
console.log(list);

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

命令

\>node tester.js

输出

[ 1, 3, 6 ]
lodash_array.htm
广告