From ced2bfd2f44ec98a538c8b532faa9e7241f17a39 Mon Sep 17 00:00:00 2001 From: "pullfrog[bot]" <226033991+pullfrog[bot]@users.noreply.github.com> Date: Wed, 18 Feb 2026 03:03:10 +0000 Subject: [PATCH] Add multiply function --- multiply.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 multiply.js 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;