create an array js code example
Example 1: javascript array
var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
Example 2: how to create an array in node js
var myArray = new Array();
var mySecondArray = [];
Example 3: how to make an array in javascript
var names = ["Sanjith", "Pranav", "Aadya", "Saharsh"]
Example 4: how to create an array in javascript
let fruits = ['Apple', 'Banana']
console.log(fruits.length)
Example 5: js arrays
const colors = ["red", "orange", "yellow"];
colors[0];
colors.length;
Example 6: how to create an array in javascript
let myVar = ["1","2","3"];