JS中去除数组中的假值(0, 空,undefined, null, false)

Posted 蘑菇仙仙啊~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 => {
if (item) {
newArr.push(item)
}
})
//法2
for (let item of arr) {
if (item) {
newArr.push(item)
}
}
3.第三方库方法

如 Lodash 库 compact方法

以上是关于JS中去除数组中的假值(0, 空,undefined, null, false)的主要内容,如果未能解决你的问题,请参考以下文章

Js中的假值_ES5中定义的ToBoolean方法强制类型转换后值为false

区分JS的空值

Falsy Bouncer-freecodecamp算法题目

jQuery与lodash($_)

javaScript中奇葩的假值

EXCEL函数去除数组中的0值和空值