Arrays in Javascript
What is an Array ?
An array allows you to store several values with a single variable name and access them by using an index number. It is a collection of data separated by commas (","). Data can be of the same or distinct data types.
Syntax
var ar...
pritika.hashnode.dev5 min read