Array constructor
| Explanation | Initialize the Array object. If item_n is specified, item_n will be initialized as an array element. If len is specified, it will be initialized as len empty elements. | |
| Call format | var arr = new Array( [ item_1 [, item_2 [, … ] ] ] ) var arr = new Array( len ) | |
| Return value | Array object | |
| Arguments | Object item_n | Object to be an array element |
| Integer len | Number of elements in the array | |
| Exception | None | |
| Example of use | | |
| Related item | ||