From 64bd21c1249c7b249908f222ad7199d7784860a4 Mon Sep 17 00:00:00 2001 From: Nihar Patel Date: Mon, 5 May 2025 16:21:46 -0400 Subject: [PATCH] complete lab --- index.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 07a4c0520..1bc1ed5d4 100644 --- a/index.js +++ b/index.js @@ -1,2 +1,12 @@ +let num1 = 31; +let num2 = 2; +const multiply = num1 * num2; -// Write your code here \ No newline at end of file +let random = Math.floor(Math.random() * 10) + 1; + +let num3 = 40; +let num4 = 12; +const mod = (num3 %=num4); + +let num = (1,4,5,6,20) +let max = Math.max(num) \ No newline at end of file