我有一个未设置项目数量的数组。假设我要选择项目3 - the end of the array。我该怎么做?
2 回答
开心每一天1111
TA贡献1836条经验 获得超13个赞
您也可以使用该filter方法。
例如,如果您具有以下条件:
let arr = ['bug', 'cat', 'dog', 'flea', 'bat', 'hat', 'rat'];
let newArr = arr.filter((element, index) => index >= 3);
console.log(newArr); // ['flea', 'bat', 'hat', 'rat']
您可以指定要从数组中选择的索引。
感谢Pointy帮助我解决了这个问题
添加回答
举报
0/150
提交
取消