Arrays
-
About Arrays
Arrays are a special type of object. An object is referred to as a complex data type because it is built from primitive types (go to About the Arr...
-
Typed Arrays
In typed arrays (also called native arrays) you define a data type which all of the elements have to comply with. (You can define a typed array of type Objec...
-
Untyped Arrays
An untyped Array object provides more flexibility than a typed array. It can store data of any type, which makes it easy to quickly write scripts that use ar...
-
Length
The length of an array is its size, i.e. the number of elements in it. length is the index of the last element+1.When we declared the weekday array pr...