Also called a list. A data structure that holds a collection of values in a particular order
The position of an element in an array. The first element is at index 0, the second element is at index 1, and so on.
Getting a value at a particular index in an array.
The number of elements an array can hold. You can get the length of an array `arr` by typing `arr.length`
Returns the length of the array
Traversing an array is the process to loop through an array and access each of the elements. Caution must be taken to avoid looping beyond the valid index values.
Looping through an array is the process to loop through an array and access each of the elements. Caution must be taken to avoid looping beyond the valid index values.
Looping through all of the elements of an array
Array values are stored at a particular index and we access elements in the array by referencing this index value. Index values in Arrays start a 0.
Accesses an element in the array to either update or retrieve.
The `splice()` method changes the contents of an array by removing or replacing existing elements and/or adding new elements.
This function removes an element from the given index position.
Also called an array. A data structure that holds a collection of values in a particular order
A particular way of organizing data in our programs.
A animated model that represents a real-life thing, process, or situation.