From d95a8ac7b28707f80d4a9f1ee49c1f44eadd75e6 Mon Sep 17 00:00:00 2001 From: Santi <38596280@terciariourquiza.edu.ar> Date: Thu, 30 Apr 2026 16:06:32 -0300 Subject: [PATCH] Ejercicio 5 completado --- ejercicios.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 763a4a7..352eaf3 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -25,4 +25,9 @@ while (i < maximo) { let maximo = 15 for (let i=3; i < maximo;i = i+3){ console.log(i); +} + +let frutas = ["Manzana", "Banana", "Frutilla"]; +for (let fruta of frutas) { + console.log(fruta); } \ No newline at end of file