Answers for "Array() in js"

140

javascript array

//create an array like so:
var colors = ["red","blue","green"];

//you can loop through an array like this:
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}
Posted by: Guest on July-01-2019
13

array of objects javascript

var widgetTemplats = [
    {
        name: 'compass',
        LocX: 35,
        LocY: 312
    },
    {
        name: 'another',
        LocX: 52,
        LocY: 32
    }
]
Posted by: Guest on March-05-2020
1

how to initialize an array in javascript

var array_name = [item1, item2, ...];
Posted by: Guest on June-29-2020
2

access index of array javascript

let first = fruits[0]
// Apple

let last = fruits[fruits.length - 1]
// Banana
Posted by: Guest on February-17-2020
0

javascript array

//create an array:
let colors = ["red","blue","green"];

//you can loop through an array like this:
//For each color of the Array Colors
for (color of colors){
  console.log(color);
}

//or you can loop through an array using the index:
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}
Posted by: Guest on July-27-2021
-1

array in js

var array_name = [item1, item2, ...];      
//Used to store more than 1 items
Posted by: Guest on October-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language