Arrays are variables that have multiple values. You normally write out variables like this:
However, an array stores multiple values for the same variable. It sets each value at different index positions. A sample array might be as follows:
The positions for each index in the array are listed in brackets after the variable. Arrays always start at an index of 0 (not 1) and increment upward.
Listing out each position in the array on its own line is lengthy, so there's a shorter way to list the positions in the array:
The order of the values reflects their positions. 49
corresponds to position 0, 56
corresponds to position 1, 63
corresponds to position 2, and so on.
If you want to get the value from an array, add the position you want in brackets after the array's name:
This would return the value Touchdown!
.
Alternative Ways of Writing Arrays
Although brackets are common ways of writing arrays, you can also write arrays like this:
or like this:
You would then include the positions of the array in the parentheses:
Methods for Arrays
Arrays are considered objects, and as objects, you can apply methods to them. Methods are the ways you can manipulate objects. Think of methods as various functions that you can apply to an object.
For example, if you want to see how many positions you have in your array, add .length
to the array name:
The result would be 5.
Methods are always added to the object name after a dot.
Some other methods include: