本教程操作环境:windows7系统、ECMAScript 6版、Dell G3电脑。
es6判断数组是否为空的方法
方法1:利用length属性
let arr = [];if (arr.length == 0){ console.log("数组为空")}else { console.log("数组不为空")}
方法2:利用JSON.stringify()
let arr = [1,2,3];if (JSON.stringify(arr) === "[]"){ console.log("数组为空")}else { console.log("数组不为空")}
【相关推荐:javascript视频教程、web前端】
以上就是es6怎么判断数组是否为空的详细内容,更多请关注php中文网其它相关文章!