creating an array without array methods in javascript code example
Example: how to create an array in javascript
let fruits = ['Apple', 'Banana']
console.log(fruits.length)
// 2
let fruits = ['Apple', 'Banana']
console.log(fruits.length)
// 2