JS中去除数组中的假值(0,空,undefined,null,false)1.Array.filter()
arr.filter(Boolean)
2.也可以通过遍历判断数组, 空字符,undefined, null, false , 0转化为布尔类型都是 false;
let arr=[1, , null, false, undefined, 3]
let newArr= []
//法1
arr.forEach(item => {令数组全部的值为0
if (item) {
newArr.push(item)
}
})
/
/法2
for (let item of arr) {
if (item) {
newArr.push(item)
}
}
3.第三⽅库⽅法
如 Lodash 库 compact⽅法
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论