JavaScript Arrays 101
In real life, we often need to group related information. For example, if you’re tracking a shopping list of fruits:
let fruit1 = "Apple";
let fruit2 = "Banana";
let fruit3 = "Orange";
But if the lis
webdev101.hashnode.dev4 min read