Exercise 4.3

This commit is contained in:
Karan 2021-11-24 19:28:01 +05:30 committed by GitHub
parent 605c8c91da
commit 2e15a2b493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
Chapter 4/Exercise 4.3 Normal file
View File

@ -0,0 +1,3 @@
const id = true;
const message = (id) ? "Allowed In" : "Denied Entry";
console.log(message);