From 6492cedbf0c6c8269b1e9c96cd51ab6a307791c9 Mon Sep 17 00:00:00 2001 From: Juan Guillermo Hernandez Alarcon Date: Tue, 11 Apr 2023 19:54:05 -0500 Subject: [PATCH] =?UTF-8?q?se=20completa=20la=20funci=C3=B3n=20de=20multip?= =?UTF-8?q?lar,=20pero=20solo=20multiplica=20dos=20numeros?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index 5c3231b..a7f662b 100644 --- a/main.js +++ b/main.js @@ -1 +1,7 @@ -console.log("Hola mundo") \ No newline at end of file +function multiplicar(x, y) { + return x*y +} + + + +console.log(multiplicar(2, 8)) \ No newline at end of file