JavaScript Tutorial - Arrays
๐ Arrays - Lists
Real Life:
๐ Shopping: [Bread, Milk]
๐ To-do: [Study, Code]
๐ต Playlist: [Song1, Song2]
Methods
| Method | Use |
|---|---|
| .push() | Add end |
| .pop() | Remove end |
| .length | Count |
Example
let items = ["A", "B"];
items.push("C");