Learn arrays in JavaScript
What is an array?
Array is a data structure which stores the multiple values in sequential fashion. In order to access each value one has to use index number.
Syntax of an array
//Declaration
let arr1 = [];
//Initialization using array literal
cons...
anushadokuparthi.hashnode.dev5 min read