1. JavaScript Tutorial
  2. Loop For & While
  3. Math Object
  4. What is Array
  5. What is JSON
  6. Function in JS
  7. RegExp – Regular Expression

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

Leave a Reply

Your email address will not be published. Required fields are marked *