A beginner's guide to arrays and array methods
Arrays in Javascript
what is an Array?
Array is just a collection of data.
Creating array in javascript
we use brackets separated by comma in array notation
//using arrayy literal notation
const arr1 = ['India', 'USA'];
//using the Array() constr...
shriram21.hashnode.dev5 min read