_.remove()方法用于从谓词返回True的数组中删除所有元素,并返回删除的元素。
用法:
_.remove(array, function)
参数:该方法接受上述和以下所述的两个参数:
- array:此参数保存需要修改的数组。
- function:此参数保存每次迭代调用的函数。
返回值:它返回一个已删除元素的数组。
例:这里所有返回true的元素都是偶数元素。该函数在数组的所有元素(n)上调用。
let x = [1, 2, 3, 4, 5];
let even = _.remove(x, function(n) {
return n % 2 == 0;
});
console.log('Origianal Array ', x);
console.log('Removed element array ', even);
这里,const _ = require('lodash')
用于将lodash库导入文件中。
输出:
Origianal Array [ 1, 3, 5 ] Removed element array [ 2, 4 ]
范例2:本示例从包含字母的数组中删除所有元音,并将其存储在新数组中。
const _ = require('lodash');
let x = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'];
let vowelArray = _.remove(x, function(n) {
let vowels = ['a', 'e', 'i', 'o', 'u'];
for (let i = 0; i < 5; i++)
{
if (n === vowels[i])
{
return true;
}
}
});
console.log('Origianal Array ', x);
console.log('Removed element array ', vowelArray);
输出:
Origianal Array [ 'b', 'c', 'd', 'f', 'g', 'h' ] Removed element array [ 'a', 'e', 'i' ]
范例3:本示例从包含浮点数,字符和整数的给定数组中删除所有整数。
let x = ['a', 'b', 1, 5.6, 'e', -7, 'g', 4, 10.8];
let intsArray = _.remove(x, function(n) {
return Number.isInteger(n);
});
console.log('Origianal Array ', x);
console.log('Removed element array ', intsArray);
输出:
Origianal Array [ 'a', 'b', 5.6, 'e', 'g', 10.8 ] Removed element array [ 1, -7, 4 ]
注意:在正常的JavaScript中这将无法正常工作,因为它需要安装库lodash。
参考: https://lodash.com/docs/4.17.15#remove
相关用法
- Lodash _.nth()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.findIndex()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.find()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.zipWith()用法及代码示例
- Lodash _.zipObject()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.castArray()用法及代码示例
注:本文由纯净天空筛选整理自iamsahil1910大神的英文原创作品 Lodash | _.remove() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。