JavaScript Arrays 101
What arrays are and why we need them?
An array is a data structure used to store multiple values in a single variable using indexed positions.
Example -
const array = [1,2,3,4,5]
Each value in this a
skullcoder.hashnode.dev3 min read