function arrayIsNull(arrayValue) {
return (arrayValue == undefined || arrayValue == null || arrayValue.length == 0);
}

相关文章: