From 3efb74a8ce1b82ee217e33ec67e14d0ac9d0d456 Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Thu, 25 Nov 2021 19:51:39 +0530 Subject: [PATCH] cleanup --- Chapter 6/ex 3 | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 Chapter 6/ex 3 diff --git a/Chapter 6/ex 3 b/Chapter 6/ex 3 deleted file mode 100644 index 84bf1c4..0000000 --- a/Chapter 6/ex 3 +++ /dev/null @@ -1,12 +0,0 @@ - const myArr = []; - - for(let x=0;x<10;x++){ - let val1 = 5 * x; - let val2 = x * x; - let res = cal(val1, val2); - myArr.push(res); - } - console.log(myArr); - function cal(a, b) { - return a + b; - }