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"
It should mention about the about the Browser Console
typeof alert // "function" (Browser Console)