Introduction to Array and it's Methods
What is an Array??
An array is used to store multiple values in a single variable. As Compared to a variable that can only store one value at a time.
let country = "India"
let states = ["Gujarat","Rajasthan","Punjab","Maharashtra"]
Here the country...
kalppatel.hashnode.dev6 min read