-Introducing Arrays
-Array Random Access
-Push and Pop
-Concat, IndexOf, includes and reverse
Introducing Arrays
Arrays are ordered collections of values.
let students = []'
let colors = ['red', 'orange', 'yellow'];
let lottoNums = [19, 22, 56, 12, 51];
let stuff = [true, 68, 'cat', null];
Array Random Access
Arrays are indexed meaning they hold values from
0 - 255
Push and Pop
Arrays have a lot of different methods for using arrays in data structures.
Some of the most common array methods are known as
Top comments (0)