“Do pętli Shothand in JS” Kod odpowiedzi

Do pętli Shothand in JS

const fruits = ["Apple", "Mango", "Peach"];

for (let i = 0; i < fruits.length; i++) {
  const fruit = fruits[i];
  console.log(fruit);
}
Ill Ibis

Do pętli Shothand in JS

const fruits = ["Apple", "Mango", "Peach"];

for (let fruit of fruits) console.log(fruit);
Ill Ibis

Odpowiedzi podobne do “Do pętli Shothand in JS”

Pytania podobne do “Do pętli Shothand in JS”

Więcej pokrewnych odpowiedzi na “Do pętli Shothand in JS” w JavaScript

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

Przeglądaj inne języki kodu