JavaScript prüft, ob das Array leer ist
if (typeof array !== 'undefined' && array.length === 0) {
// the array is defined and has no elements
}
Code Hero
if (typeof array !== 'undefined' && array.length === 0) {
// the array is defined and has no elements
}
if (array === undefined || array.length == 0) {
// array empty or does not exist
}
if (array && !array.length) {
// array is defined but has no element
}
if(array.length > 0)
var colors=[];
if(!colors.length){
// I am empty
}else{
// I am not empty
}
if (typeof image_array !== 'undefined' && image_array.length > 0) {
// the array is defined and has at least one element
}