From 66c9f866022e5be06d4bae698bf401653604c08c Mon Sep 17 00:00:00 2001 From: annmaryvinod Date: Fri, 14 Oct 2022 01:30:40 +0530 Subject: [PATCH] added notes on variables in js --- 01_Day_Introduction/01_day_starter/variable.js | 1 - 1 file changed, 1 deletion(-) diff --git a/01_Day_Introduction/01_day_starter/variable.js b/01_Day_Introduction/01_day_starter/variable.js index 1c1af5b..f71da39 100644 --- a/01_Day_Introduction/01_day_starter/variable.js +++ b/01_Day_Introduction/01_day_starter/variable.js @@ -8,7 +8,6 @@ let age = 100 // age in years let isMarried = true // Declaring variables with number values - // We can use keywords like var,let and const to declare variables // let allows one time declaration and multiple time value assignment // const allows one time declarartion as well as assignment