From 90598085aa1472d5969c8715c4ca737064524591 Mon Sep 17 00:00:00 2001 From: Sachin-K13Y <163808022+Sachin-K13Y@users.noreply.github.com> Date: Wed, 3 Apr 2024 16:54:40 +0530 Subject: [PATCH] Update switch.js --- 04_control_flow/switch.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/04_control_flow/switch.js b/04_control_flow/switch.js index d9dd7f1e..bf5244de 100644 --- a/04_control_flow/switch.js +++ b/04_control_flow/switch.js @@ -21,9 +21,10 @@ switch (month) { break; case "april": console.log("april"); + //hello everybody break; default: console.log("default case match"); break; -} \ No newline at end of file +}