From c5478d1d95ff0005b538b3e01781aa47caaa5874 Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Wed, 24 Nov 2021 19:05:04 +0530 Subject: [PATCH] Exercise 1.4 --- Chapter 1/Exercise 1.4 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Chapter 1/Exercise 1.4 diff --git a/Chapter 1/Exercise 1.4 b/Chapter 1/Exercise 1.4 new file mode 100644 index 0000000..02ba2dc --- /dev/null +++ b/Chapter 1/Exercise 1.4 @@ -0,0 +1,3 @@ +let a = 10; // assign a value of 10 to variable a +console.log(a); // This will output 10 into the console +/*