Answers for "arrray js"

141

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
7

js array

var myArray = ["foo", "bar", "baz"];
//Arrays start at 0 in Javascript.
Posted by: Guest on November-11-2021
-1

array

double prod(double #1,int #2){    double result= 1;    for(int i = 0;i<length;i++){        result = result * array[i];    }    return result;}
Posted by: Guest on June-27-2021
2

js array

//create an array
let numbers = [ 11 , 13 , 15 , 17]

//you can use loop like this
for(let i = 0;i<numbers.length;i++) {
	console.log(numbers[i])
}
Posted by: Guest on April-17-2021
-3

javascript array

window.location.href
Posted by: Guest on December-12-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

Code answers related to "Javascript"

Browse Popular Code Answers by Language