diff --git a/multiply.js b/multiply.js new file mode 100644 index 0000000..ee4578a --- /dev/null +++ b/multiply.js @@ -0,0 +1,5 @@ +function multiply(a, b) { + return a * b; +} + +module.exports = multiply;