Array 101 in JavaScript
What is an Array?
An Array is an object that can store multiple values at once.
All these elements need to be of the same data type, such as an integer or string, or boolean.
How to create an Array?
Syntax:
const array_name = [item1, item2, ...];
E...
spy.hashnode.dev3 min read