What is Array
In JavaScript, array is a single variable that is used to store different elements. It is often used when we want to store list of elements and access them by a single variable.
var house = [“1BHK”, “2BHK”, “3BHK”, “4BHK”];
- Array Declaration
- Array Access
- Array Length – Access Last Value in array index
- Push & Pop Operation
- Array for loop
- Sort & Reverse Method
Learning Path Youtube
No responses yet