Javascript Arrays for beginners
what is Array?
An array is an object which can store multiple values.
Arrays store data as elements & we can use when we want, which can hold more than one value.
const animals = ["Lion", "Tiger", "Cheetah"]
It is an Array which stores 3 values
How a...
sanathan.hashnode.dev3 min read