Array and it's Methods in JavaScript
What is Array?
An array is a collection of multiple types of data in javascript which can store in a single variable.
It is an object datatype in javascript.
Syntax:-
const arr =[element1, element2,.....];
all the array elements should be separa...
vikash-yadav.hashnode.dev8 min read