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('对象属性不存在,或者对象不存在')
}