JavaScript Arrays🤩
JavaScript Arrays
An array is a variable that can hold several values.
Example:
const cars = ["Saab", "Volvo", "BMW"];//Array consisting of some values.
console.log(cars);//displaying the array.
Output:
(3) ['Saab', 'Volvo', 'BMW']
What's the Point o...
mujeebahmed.hashnode.dev10 min read
DILEEPA NV
software developer
really Nice blog for understanding concepts of array 👌👌