Arrays, Part 1 : Methods
Learn how to use the information stored inside arrays in more useful ways. Learn the most important functions we can use with arrays to manipulate their data.
We'll cover the following...
JavaScript has multiple functions avaiable for use built-in to the language. There are several that help us work with arrays.
Array.push
We can add items to the end of an array using Array.push
. When I capitalize Array
, I mean that this function is avaible to use ...