Starting With JavaScript Array
Q. What is an Array in JavaScript?
Ans. It is a special variable that can store multiple same or different types of values at a time.
For understanding, if we are having 5 different types of colors,
var colour_1: "Red";
var colour_2: "Blue";
var c...
bibhas.hashnode.dev4 min read