JavaScript : Array
What is an Array?
Collection of values arranged in a sequence. Usually, we use an array data structure, when we need to store multiple values one after another.
//Example 1 - Store numbers from 1 to 5.
let arr = [1, 2, 3, 4, 5]
//Example 2 - Store ...
subhamsahu.hashnode.dev5 min read