var a = []; if (a) { console.log('1'); }
这时候为什么不会把a置成0?
var a = []; if (a.length) { console.log('1'); }
数组是个对象, 空数组转换成布尔值也是true, 所以要判断length
length
1.4m articles
1.4m replys
5 comments
57.0k users