es6判断数组是否为空

你可以使用 Array.prototype.length 属性来判断一个数组是否为空。如果数组的长度为0,那么它就是空的。

const arr = [];
if (arr.length === 0) {
  console.log('The array is empty');
  •