javascript if array empty or value <1 code example
Example 1: js how to check is array empty es6
var colors=[];
if(!colors.length){
// I am empty
}else{
// I am not empty
}
Example 2: javascript how to check if array is empty
if(array.length > 0)