“bucle y matriz de JavaScript” Código de respuesta

Array de bucle JavaScript

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

iterar a través de la matriz js

var arr = ["f", "o", "o", "b", "a", "r"]; 
for(var i in arr){
	console.log(arr[i]);
}
FlashingMustard

JavaScript Loop a través de una matriz

var myStringArray = ["hey","World"];
var arrayLength = myStringArray.length;
for (var i = 0; i < arrayLength; i++) {
    console.log(myStringArray[i]);
    //Do something
}
Bald Eagle

bucle y matriz de JavaScript

var array = ["hello","world"];
array.forEach(item=>{
	console.log(item);
});
Enchanting Elephant

Cómo recorrer una matriz de JavaScript

function filter(array, test) {
  let passed = [];
  for (let element of array) {
    if (test(element)) {
      passed.push(element);
    }
  }
  return passed;
}

console.log(filter(SCRIPTS, script => script.living));
// → [{name: "Adlam", …}, …]
Xanthous Xenomorph

Respuestas similares a “bucle y matriz de JavaScript”

Preguntas similares a “bucle y matriz de JavaScript”

Más respuestas relacionadas con “bucle y matriz de JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código