js去除数组中为0的元素
时间: 2023-05-20 19:04:33 浏览: 83
剔除1维数组中等于0的元素
可以使用filter方法来去除数组中为0的元素,代码如下:
```
const arr = [1, 0, 2, 0, 3, 0, 4];
const filteredArr = arr.filter(item => item !== 0);
console.log(filteredArr); // [1, 2, 3, 4]
```
这段代码会输出一个新的数组,其中不包含原数组中为0的元素。
阅读全文