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