js Array vs [],以及是否为空的判断

Posted RainDream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js Array vs [],以及是否为空的判断相关的知识,希望对你有一定的参考价值。

两者基本相同,唯一不同点在于初始化:

var a = [],            // these are the same
b = new Array(),   // a and b are arrays with length 0

c = [‘foo‘, ‘bar‘],           // these are the same
d = new Array(‘foo‘, ‘bar‘),  // c and d are arrays with 2 strings

// these are different:
e = [3]             // e.length == 1, e[0] == 3
f = new Array(3),   // f.length == 3, f[0] == undefined

也就是说Array(arg),其中的arg是指生成数组的长度。

参考:What’s the difference between “Array()” and “[]” while declaring a javascript array?

 

检查array是否为空:

if (array === undefined || array.length == 0) {
    // array empty or does not exist
}

 

以上是关于js Array vs [],以及是否为空的判断的主要内容,如果未能解决你的问题,请参考以下文章

(ASP.NET 、 VS2008)JS(javascript) 判断 TextBox 是不是为空。求 JS 代码。

js 如何判断数组为空

C++中如何判断动态数组为空?要具体代码,谢谢

iOS 判断数组是否为空

js判断字符是否为空的方法

js判断登陆用户名及密码是否为空的简单实例