“JS Crear matriz desde el bucle” Código de respuesta

matriz de bucle JS

var colors = ["red","blue","green"];
for (var i = 0; i < colors.length; i++) {
    console.log(colors[i]);
}
Grepper

Array de bucle JavaScript

var colors = ['red', 'green', 'blue'];
	
	colors.forEach((color, colorIndex) => {
     console.log(colorIndex + ". " + color); 
    });
Magnificent Moth

JS Crear matriz desde el bucle

var yearStart = 2000;
var yearEnd = 2040;

var arr = [];

for (var i = yearStart; i < yearEnd+1; i++) {
    arr.push(i);
}
Borma

javascript bucle aray

const myArray = [6, 19, 20];const yourArray = [19, 81, 2];for (let i = 0; i < myArray.length; i++) {  for (let j = 0; j < yourArray.length; j++) {    if (myArray[i] === yourArray[j]) {      console.log('Both loops have the number: ' + yourArray[j])    }  }};
KaptainKermit1

javascript bucle aray

im fucking gay
Urmotherissexuallyunpleasnt

Respuestas similares a “JS Crear matriz desde el bucle”

Preguntas similares a “JS Crear matriz desde el bucle”

Más respuestas relacionadas con “JS Crear matriz desde el bucle” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código