All about Arrays in JavaScript!
JavaScript array is an object that represents a collection of similar types of elements. It can hold values (of any type) not particularly in named properties/keys, but rather in numerically indexed positions.
Syntax:
const array_name = [item-1, item...
ishivamshukla.hashnode.dev6 min read