From 9139b9da63e0b045e1109ad944851ded4d38672b Mon Sep 17 00:00:00 2001 From: Migliarese Ezequiel <40101667@terciariourquiza.edu.ar> Date: Thu, 30 Apr 2026 22:18:53 -0300 Subject: [PATCH] Se escribe array frutas --- ejercicios.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index fbf69b1..6f01f10 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -35,6 +35,13 @@ for (let maximo2 = 0; maximo2 < maximo; maximo2 = maximo2 +3){ console.log(maximo2); } +const frutas = ["mango", "frutilla", "platano"]; +for (const fruta of frutas) { + console.log(fruta); +} + + +