Arrays in Javascript
In JavaScript, array is a single variable that is used to store different elements. It is often used when we want to store list of elements and access them by a single variable.
Declaring an Array
// Arrays must be declared with brackets '[]' and eac...
devwrld.hashnode.dev1 min read