Lodash——without 方法
语法
_.without(array, [values])
使用 SameValueZero 进行相等性比较,创建一个不包含所有给定值的数组。
参数
array (数组) − 要检查的数组。
[values] (...*) − 要排除的值。
输出
(数组) − 返回过滤值的新数组。
示例
var _ = require('lodash'); var numbers = [ 1, 2, 3, 4, 5 ] var result = _.without(numbers, 1, 2); console.log(result);
在tester.js中保存上述程序。运行以下命令以执行此程序。
命令
\>node tester.js
输出
[ 3, 4, 5 ]
lodash_array.htm
广告