| Name |
Array |
||||||||||||
| Examples |
|
||||||||||||
| Description | An array is a list of data. It is possible to have an array of any type of data. Each piece of data in an array is identified by an index number representing its position in the array. The first element in the array is [0], the second element is [1], and so on. Arrays are similar to objects, so they must be created with the keyword new. Every array has a variable length which is an integer value for the total number of elements in the array. | ||||||||||||
| Syntax |
|
||||||||||||
| Parameters |
|