“JavaScript for of Loop” Kod odpowiedzi

JavaScript za

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

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

dla 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

Jak używać w JavaScript

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

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

za pętlę

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

dla JS lub w pętli w 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 for of Loop

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

// 1
// 2
// 3
Prickly Polecat

Odpowiedzi podobne do “JavaScript for of Loop”

Pytania podobne do “JavaScript for of Loop”

Więcej pokrewnych odpowiedzi na “JavaScript for of Loop” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu