🔰Node.js
JS ⟩ concepts ⟩ environment ⟩ Node
(a JS runtime environment) builds server-side applications with JavaScript.
in Node.js:
top-level scope of a file is module scope ( not global scope❗)
the global object is refered to as "global".
module scope - top-level scope of a JS file.
global - the global object in Node.js environment.
Last updated
Was this helpful?