From 87d93deefbbdd071d7ec72b243622ddb9c809ec8 Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 30 Apr 2026 22:08:08 -0300 Subject: [PATCH] Resolucion del 6to ejercicio --- ejercicios.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 63984f4..c32a8ab 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -32,4 +32,9 @@ maximo = 45 for (let numero = 3; numero < maximo; numero = numero + 3) { console.log(numero); +} + +const frutas = ["sandia", "kiwi", "manzana"]; +for(const fruta of frutas) { + console.log(fruta) } \ No newline at end of file