空数组直接转化为布尔值是为true let arr=[]; if(arr){ console.log(1) }else{ console(2) } //输出结果为 1 证明空数组的布尔值为true //可以判定长度不为0。