check if array is null code example
Example 1: javascript not empty array not string
if (Array.isArray(array) && array.length) {
}
Example 2: check array empty or not in javascript
if (array && array.length) {
} else {
}
if (array && array.constructor === Array && array.length === 0) {
} else {
}
Example 3: isempty for arrays
Object arr[] = new Object[10];
boolean empty = true;
for (Object ob : arr) {
if (ob != null) {
empty = false;
break;
}
}
Example 4: isempty for arrays
Object arr[] = new Object[10];
boolean empty = true;
for (int i=0; i<arr.length; i++) {
if (arr[i] != null) {
empty = false;
break;
}
}