From 71304221af03b5c4115e98e9dd38275537546997 Mon Sep 17 00:00:00 2001 From: JohannesDev Date: Fri, 2 Oct 2020 10:08:26 +0200 Subject: [PATCH] Add Multiply function --- index.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.js b/index.js index 80bb5fe..43e1ed4 100644 --- a/index.js +++ b/index.js @@ -8,12 +8,19 @@ function subtract(a, b) { return a - b; } +function multiply(a, b) { + return a * b; +} + function divide(a, b) { return a / b; } + + module.exports = { add, subtract, + multiply, divide }; \ No newline at end of file