filter函数的妙用 数组的 filter 函数有一个很重要的用处,可以过滤 null、undefined、'' 代码 var arr = [1, '', null, undefined, ' '] console.log(arr.filter(v => v))