A Beginner's Guide to Manipulating Arrays in Javascript
In simple terms, arrays in Javascript allows you to store multiple values in a single variable. The values stored could be strings, numbers, arrays e.t.c.
const quote = ["stay", true, 2, "yourself"];
/* A simple array taking multiple values */
In th...
afolaode.hashnode.dev6 min read