clarify typeof alert behavior in non browser environment

The current page mentions:

typeof alert // "function"

But in Node.js / VS Code / terminal / online JS runners → alert does NOT exist. So it's gives undefined.

typeof alert // "undefined"

Image

It should mention about the about the Browser Console

typeof alert // "function" (Browser Console)