how to check if an array is empty code example

Example 1: javascript check if object is empty

function isObjectEmpty(obj) {
    return Object.keys(obj).length === 0;
}

Example 2: javascript check if array is empty

if (typeof array !== 'undefined' && array.length === 0) {
    // the array is defined and has no elements
}

Example 3: javascript check if array is not empty

if (array === undefined || array.length == 0) {
    // array empty or does not exist
}

Example 4: javascript check if array is empty

if (array && !array.length) {
    // array is defined but has no element
}

Example 5: javascript not empty array not string

if (Array.isArray(array) && array.length) {
    // array exists and is not empty
}

Example 6: js how to check is array empty es6

var colors=[];
if(!colors.length){
	// I am empty
}else{
	// I am not empty
}