From cdbe436b89ff40819b29dbb49c2f0cb58acadb5c Mon Sep 17 00:00:00 2001 From: Vivek Date: Fri, 17 Jun 2022 16:45:30 +0530 Subject: [PATCH] Adding two nos --- addition.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 addition.js diff --git a/addition.js b/addition.js new file mode 100644 index 0000000..68ef33b --- /dev/null +++ b/addition.js @@ -0,0 +1,3 @@ +let a = 20; +let b = 30; +console.log("Sum = " , a+b); \ No newline at end of file