JavaScript Array Methods
In JavaScript, Array is an ordered collection which can store multiple values of different data types at once. For example.
let arr = ['Abhishek', true, 21];
console.log(arr);
// prints ['Abhishek', true, 21]
They can be declared using 2 ways.
// us...
abhisheky495.hashnode.dev4 min read