From 954dfb3069890218db31016862f5aa67ef33c917 Mon Sep 17 00:00:00 2001 From: Partha Das Date: Sun, 25 Jan 2026 17:26:26 +0600 Subject: [PATCH] Docs: clarify typeof alert behavior in non-browser environments Clarified the output of typeof alert in the browser console. --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index 04e8b2450c..feaa9c0c02 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -243,7 +243,7 @@ typeof null // "object" (2) */!* *!* -typeof alert // "function" (3) +typeof alert // "function" (Browser Console) (3) */!* ```