arraysin js code example
Example 1: how to create an array in javascript
let fruits = ['Apple', 'Banana']
console.log(fruits.length)
// 2
Example 2: array in js
var array_name = [item1, item2, ...];
//Used to store more than 1 items
let fruits = ['Apple', 'Banana']
console.log(fruits.length)
// 2
var array_name = [item1, item2, ...];
//Used to store more than 1 items