JS Capsules: Arrays
What's an Array?
An array is a data structure used to store a collection of elements in an ordered form.
let myArray = ["cheese", "milk", true, 8, "flamingo"];
An array can store elements of different data types - strings, numbers, booleans, objects,...
dpkreativ.hashnode.dev2 min read
Sophia Iroegbu
Software Backend Engineer | Developer Advocate | Youtuber 🎥
Beautiful write-up. Thanks for this.