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"); +}