Exercise 4.1

This commit is contained in:
Karan
2021-11-24 19:26:54 +05:30
committed by GitHub
parent d779c4208d
commit 5328f7f951
+8
View File
@@ -0,0 +1,8 @@
const test = false;
console.log(test);
if(test){
console.log("It's True");
}
if(!test){
console.log("False now");
}