Bird

Arrays

Array Declaration

Arrays hold a collection of elements all of the same type. When declaring an empty array, the type must be provided.

Indexing

You can access the values in an array by indexing with square brackets.

The Length Function

You can access the length of the array through the length function.

The Push Function

You can append elements of the same type into the array by using the push function.

Still here?

Check out the playground!