Arrays in Javascript
What is Arrays in javascript?
An Array is Data Structure which can store various data in it with one variable.
let myArray=[]
Array()
In javascript, index of array starts from 0
Properties of Array
1. length()
myarray=['ram','sita']
myarray.length()...
sahilahluwalia.hashnode.dev2 min read