How do you 'interface' with an array in JavaScript?
Well, you need to know how they work, which includes knowing:
You interface with an array (or any object) by using it's properties and methods. Properties and methods are the tools you use to solve problems.
The API (application programming interface) of an object is it's collection of properties and methods that you can use.
Here are some references on array methods in JavaScript:
There are many others, you should find one you like!
In this activity we'll explore the Array API in JavaScript.
But first, remember that when using a method you should understand 3 things: