javasctip arry not empty code example
Example: javascript is array empty
var colors=[];
if(!colors.length){
// I am empty
}else{
// I am not empty
}
var colors=[];
if(!colors.length){
// I am empty
}else{
// I am not empty
}