check or array is empty javascript code example
Example 1: javascript check if array is empty
if (array && !array.length) {
// array is defined but has no element
}
Example 2: check row empty array javascript
if(array && array.length){
// not empty
} else {
// empty
}