Bootstrap

js判断数组、对象为空或者不存在

if(typeof(arr)=='undefined'?false:(arr.length==0?false:true)){
    console.log('数组不为空')
} else {
    console.log('数组不存在或者为空')
}

if(typeof(o)=='undefined'?false:(typeof(o.name)=='undefined'?false:true)){
    console.log('对象属性存在')
} else {
    console.log('对象属性不存在,或者对象不存在')
}

;