From 5328f7f951afe42a726863c8f620781f98b1a978 Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Wed, 24 Nov 2021 19:26:54 +0530 Subject: [PATCH] Exercise 4.1 --- Chapter 4/Exercise 4.1 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Chapter 4/Exercise 4.1 diff --git a/Chapter 4/Exercise 4.1 b/Chapter 4/Exercise 4.1 new file mode 100644 index 0000000..28dc50c --- /dev/null +++ b/Chapter 4/Exercise 4.1 @@ -0,0 +1,8 @@ +const test = false; +console.log(test); +if(test){ + console.log("It's True"); +} +if(!test){ + console.log("False now"); +}