Answers for "arrays js"

4

how to get element of an array in javascript

var value = [a,b,c,d];

var value_b = value[1];
Posted by: Guest on December-02-2020
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

// this is sumple array
let array=[1,2,3,4]
Posted by: Guest on September-10-2021
1

array ub js

var fruits = ['Apple', 'Banana'];
Posted by: Guest on October-27-2020
9

js array

var colors = [ "red", "orange", "yellow", "green", "blue" ]; //Array

console.log(colors); //Should give the whole array
console.log(colors[0]); //should say "red"
console.log(colors[1]); //should say "orange"
console.log(colors[4]); //should say "blue"

colors[4] = "dark blue" //changes "blue" value to "dark blue"
console.log(colors[4]); //should say "dark blue"
//I hope this helped :)
Posted by: Guest on June-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language