“para bucle shothand en js” Código de respuesta

para bucle shothand en js

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

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

para bucle shothand en js

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

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

Respuestas similares a “para bucle shothand en js”

Preguntas similares a “para bucle shothand en js”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código