我在我的代码中设置了一个具有字符串键的数组,如下所示:
var a = new Array();
a[1] = new Array();
a[1]['mystring'] = new Array();
a[1]['mystring'] = 'test';
if(isNullValues(a[1])) {
alert("Array Empty.");
}
function isNullValues(data) {
if (data == undefined || data == null || data.length == 0 || data == "") {
return true;
} else {
return false;
}
}
它提醒我Array Empty
字符串。但它不应该返回这个吗?