array empty javascript es6 code example
Example 1: javascript check if array is empty
if (array && !array.length) {
// array is defined but has no element
}
Example 2: javascript is array empty
var colors=[];
if(!colors.length){
// I am empty
}else{
// I am not empty
}