“untuk loop” Kode Jawaban

JavaScript untuk

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

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

Forloop di JS

for(i = 0; i < x; ++i){
  //Loop, x can be replaced with any integer; 
}
Repulsive Ratel

untuk 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

untuk loop di ES6

let colors = ['Red', 'Blue', 'Green'];
for (let color of colors){
	console.log(color);
}
Thoughtful Tuatara

untuk loop

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

untuk loop

for (arrayItem of myArray) {
  // do something
}
Faithful Fox

Jawaban yang mirip dengan “untuk loop”

Pertanyaan yang mirip dengan “untuk loop”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya