_.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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。