define an array 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
function Array() { return []; }
alert(Array(1, 2, 3)); // An empty alert box