array en javascript code example

Example 1: 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]);
}

Example 2: javascript array

//An array is a list of thing, you can add as many things as you want

var food = ["cake", "apple", "Ice-Cream"]

//You can use Math.Random to pick a random number
//from one to the length of the array

var Number = [Math.floor(Math.random() * food.length)];
//then we can console.log the random word from the array
console.log(logammounts[woodloot])

Example 3: https://javascript array

let fruits = ['Apple', 'Banana']

console.log(fruits.length)
// 2

Example 4: javascript arrays

Arrays = 'Arrays are variables that hold multiple Values. PS. they dont have to be of the same type.'

const Array = ['Hello', 'World', 100, 50]

Tags:

Php Example