chaeck if array is empty in js code example
Example 1: javascript check if array is empty
if (array && !array.length) {
// array is defined but has no element
}
Example 2: javascript not empty array not string
if (Array.isArray(array) && array.length) {
// array exists and is not empty
}