“JavaScript para el bucle” Código de respuesta

JavaScript para

const array = ['hello', 'world', 'of', 'Corona'];

for (const item of array) {
  console.log(item);
}
2 Programmers 1 Bug

para JavaScript

let arr = ["a", "b", "c"]

for (let i in arr){
  console.log(i) // 0, 1, 2
}

for(let i of arr){
  console.log(i) // a, b, c
}
Friendly Fox

Cómo usar en JavaScript

const array1 = ['a', 'b', 'c'];

for (const element of array1) {
  console.log(element);
}
Dark Dunlin

para de bucle

Create a loop that runs through each item in the fruits array.

var fruits = ['Apple', 'Banana', 'Orange']

for (x of fruits){
	console.log(x)
}
Wicked Wolverine

para en js o para en bucle en js

let list = [10, 11, 12];

for (let i in list) {
   console.log(i); //Display the indices: "0", "1", "2",
}

for (let i of list) {
   console.log(i); // Display the elements: "10", "11", "12"
}
Moscode

JavaScript para el bucle

(function() {
  for (const argument of arguments) {
    console.log(argument);
  }
})(1, 2, 3);

// 1
// 2
// 3
Prickly Polecat

Respuestas similares a “JavaScript para el bucle”

Preguntas similares a “JavaScript para el bucle”

Más respuestas relacionadas con “JavaScript para el bucle” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código