Question:
What do you mean by Array? How will you declare an array?
Answer Array
1. Array is a compound data structure in computing.
2. It is as a collection of numbered variable.
An array in javaScript have the following general syntax to declare:
1. var a=new Array();
2. var a=[];
+ Report
What do you mean by Array? How will you declare an array?