From 0eeb6f95f394571f5f38daed0aae6fa9129ecb51 Mon Sep 17 00:00:00 2001 From: Lucio Gaibazzi Date: Sun, 3 May 2026 22:05:26 -0300 Subject: [PATCH] Realizo el ejercicio 6 de la clase 6 --- ejercicios.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 47a79dd..e48476b 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -25,4 +25,10 @@ let maximo = 15; for (let i = 3; i < maximo; i = (i+3)) { console.log(i); +} + + +const frutas = ["banana", "durazno", "manzana"]; +for (const fruta of frutas) { + console.log(fruta) } \ No newline at end of file