From 8ee2a3e811a5944a73324b2324c6211c7542d344 Mon Sep 17 00:00:00 2001 From: Lesli Ramos Date: Thu, 6 Oct 2022 08:44:05 -0400 Subject: [PATCH] added function --- express/lib/random_number.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/express/lib/random_number.js b/express/lib/random_number.js index d8eaaba..58ce990 100644 --- a/express/lib/random_number.js +++ b/express/lib/random_number.js @@ -1 +1,5 @@ -// Code goes here +//code goes here + +function myfunction(a,b) { + return a * b; // Function retunr the product of a and b +}