Array and its Methods
Array is a list of collections of variables separated with commas and kept in between square brackets.
Arrays can be created in two ways -
array created using array literal notation
let arr = new Array("Chocolate", "Milk");
array created using th...
jeetch.hashnode.dev6 min read