Skip to content

Latest commit

 

History

History

Array类型

声明方式有两种

一种使用Array的构造函数

var list = new Array();

一种使用语法糖形式

var list = [];