From 9de15985f45c79a7024d01fa97a9fbd2ee41df7b Mon Sep 17 00:00:00 2001 From: Geronimo Hidalgo <45217034@terciariourquiza.edu.ar> Date: Wed, 20 May 2026 17:06:28 -0300 Subject: [PATCH] feat: add for to show 3 multiples --- ejercicios.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 8a9a4cd..be41940 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -35,3 +35,9 @@ while (n < maximo) { console.log(n) n+=3 } + +// Cuarto ejercicio + +for (let i=3; i < maximo; i+=3){ + console.log(i) +}