From 2e15a2b493d8fa784ecc51211a2e2eaf46c021b8 Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Wed, 24 Nov 2021 19:28:01 +0530 Subject: [PATCH] Exercise 4.3 --- Chapter 4/Exercise 4.3 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Chapter 4/Exercise 4.3 diff --git a/Chapter 4/Exercise 4.3 b/Chapter 4/Exercise 4.3 new file mode 100644 index 0000000..e450dc8 --- /dev/null +++ b/Chapter 4/Exercise 4.3 @@ -0,0 +1,3 @@ +const id = true; +const message = (id) ? "Allowed In" : "Denied Entry"; +console.log(message);