Array-Javascript
Definition
An array is a collection of similar data elements stored at contiguous memory locations.
Syntax
// Using the javascript array literal
const array_name = [item1, item2, ...];
// Using the JavaScript new Keyword
const array_name = new A...
shubhamsharaff.hashnode.dev3 min read