Is absent. Javascript does not implement real arrays. All this is abstracted out through javascript object notation.
So say:
a = [0, 1]; b = {"0": 1, "1": 1};
Has the same effect:
a[0]
Another thing to keep in mind is when you do:
a[100] = 100;
The length is automatically set to 101. Although:
a[2] //undefined
source share