check if javascript list is empty code example
Example 1: javascript check if array is empty
if (array && !array.length) {
// array is defined but has no element
}
Example 2: javascript cehck if array is empty
if (array === undefined || array.length == 0) {
// array empty or does not exist
}