Learn: Array
Simply Array is to store multiple values in one variable.
Syntax:
const array_name = [item1, item2, ...]; ( Here we assign array literal to the variable array_name)
Why Arrays?
If we want to store 3 values we can store in three variables like
let car...
nareshblogs.dev4 min read