From 2751fc365d12c885118eb799a56d10fdb96180c5 Mon Sep 17 00:00:00 2001 From: z3nth10n Date: Wed, 3 Jun 2020 17:23:36 +0200 Subject: [PATCH] multiplicar y dividir --- operations.html | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/operations.html b/operations.html index 68a5007..c7a6635 100644 --- a/operations.html +++ b/operations.html @@ -17,6 +17,15 @@ return (parseInt(n1) - parseInt(n2)); }, + multiplicar: function multiplicarNumeros(n1, n2) { + return (parseInt(n1) * parseInt(n2)); + }, + + dividir: function dividirNumeros(n1, n2) { + return (parseInt(n1) / parseInt(n2)); + } + + }; @@ -46,6 +55,14 @@ var resultado = ops.restar(num1, num2); alert (resultado); break; + case 'multiplicar': + var resultado = ops.multiplicar(num1, num2); + alert(resultado); + break; + case 'dividir': + var resultado = ops.dividir(num1, num2); + alert(resultado); + break; } } @@ -57,7 +74,7 @@ -

Operations de Álvaro Rodríguez García

+

Operations de Álvaro Rodríguez García

Número 1: @@ -65,8 +82,10 @@

Operations de Álvaro Rodríguez García





+
+
- + \ No newline at end of file