Arrays in Javascript
What is an Array? ๐
An array is a collection of data stored at contiguous memory locations.Arrays are addressed by using indexes.Index is nothing but its positions.Using Index we are retrieving data elements.
Syntax:
const array_name = [item1, item2...
seethal.hashnode.dev5 min read