Underscore.js 数组 without 方法

返回 Underscore.js 数组


语法

_.without(array, *values)

without() 方法在从给定数组中删除值后返回一个数组。

示例

var _ = require('underscore');

var list = [1, 2, 3, 4, 5, 6]
//示例 1: 移除 5 
result = _.without(list, 5);
console.log(result)

//示例 2: 移除 5 和 6
result = _.without(list, 5, 6);
console.log(result)

上面示例运行结果如下

Underscore.js 数组 without 方法运行结果


返回 Underscore.js 数组

查看笔记

扫码一下
查看教程更方便