Computer Science, asked by manpriya3534, 11 months ago

What is arrays use in javascript in computer progamming?

Answers

Answered by CyberPhase
0

An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This makes it easier to calculate the position of each element by simply adding an offset to a base value, i.e., the memory location of the first element of the array (generally denoted by the name of the array).


The attached image can be looked as a top-level view of a staircase where you are at the base of the staircase. Each element can be uniquely identified by their index in the array (in a similar way as you could identify your friends by the step on which they were on in the above example).

—————————

Visit my YouTube channel

bit.ly/cyberphase

Do subscribe

Attachments:
Similar questions