- Array indices start at
0. - This page has more information on how to access array elements.
- The array is a mutable structure, you can change its content anytime.
- You can find an example here, inside the 'Changing an Array Element' section.
- There is a built-in method to add a new value to the end of the array.
- There is a built-in method to add a new value to the beginning of the array.
- There is a built-in method that, among other use cases, can be used to remove elements starting at a certain position.
- There is a built-in method to remove the last element from the array.
- There is a built-in method to remove the first element from the array.
- Arrays have a property to retrieve their length.