From 3ce259bdae80120d8e4a6e0d9462a9bbb929fde8 Mon Sep 17 00:00:00 2001 From: dipu01-code Date: Thu, 13 Nov 2025 12:17:44 +0530 Subject: [PATCH] Add note on console.log usage in solution.md Added note on using console.log instead of alert. --- 1-js/02-first-steps/04-variables/1-hello-variables/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/04-variables/1-hello-variables/solution.md b/1-js/02-first-steps/04-variables/1-hello-variables/solution.md index 9249e1c84e..45574b4f83 100644 --- a/1-js/02-first-steps/04-variables/1-hello-variables/solution.md +++ b/1-js/02-first-steps/04-variables/1-hello-variables/solution.md @@ -9,4 +9,4 @@ admin = name; alert( admin ); // "John" ``` - +You also use console.log(admin) if you dont want to use alert