_.pullAt()方法用于删除与给定地址对应的元素,并返回已删除元素的数组。
用法:
_.pullAt(array, arrayofIndexes)
参数:该方法接受上述和以下所述的两个参数:
- array:此参数保存需要修改的数组。
- arrayofIndexes:此参数保存需要从数组中删除的元素的索引。
返回值:它返回一个已删除元素的新数组array。
范例1:本示例从数组中删除给定的索引元素,并返回剩余元素的数组。
const _ = require('lodash');
let ar = [100, 200, 33, 400, 554]
let indexes = [1, 3, 4]
let value = _.pullAt(ar, indexes)
console.log('Original Array ', ar);
console.log('\nRemoved elements array ', value)
这里,const _ = require('lodash')
用于将lodash库导入文件中。
输出:
Original Array [ 100, 33 ] Removed elements array [ 200, 400, 554 ]
范例2:本示例从数组中删除给定的索引元素,并返回剩余元素的数组。
const _ = require('lodash');
let ar = ['a', 'b', 'c', 'd', 'e']
let indexes = [1, 3]
let value = _.pullAt(ar, indexes)
console.log('Original Array ', ar);
console.log('\nRemoved elements array ', value)
输出:
Original Array [ 'a', 'c', 'e' ] Removed elements array [ 'b', 'd' ]
范例3:本示例从数组中删除给定的索引元素,并返回剩余元素的数组。
const _ = require('lodash');
let ar = [{'name':'lodash'},
{'function':'pullAt'},
{'used on':'array'}];
let indexes = [1, 2]
let value = _.pullAt(ar, indexes)
console.log('Original Array ', ar);
console.log('\nRemoved elements array ', value)
输出:
Original Array [ { name:'lodash' } ] Removed elements array [ { function:'pullAt' }, { 'used on':'array' } ]
注意:在正常的JavaScript中这将无法正常工作,因为它需要安装库lodash。
参考: https://lodash.com/docs/4.17.15#pullAt
相关用法
- Lodash _.xor()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.zipObject()用法及代码示例
- Lodash _.zipWith()用法及代码示例
- Lodash _.find()用法及代码示例
- Lodash _.findIndex()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
注:本文由纯净天空筛选整理自iamsahil1910大神的英文原创作品 Lodash | _.pullAt() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。