🔰module scope

🚧 施工中

JSconceptsscope ⟩ module

scope for code running in module mode.

in a module there's no "module-wide scope object" for these top-level declarations to be added to as property.

( 👉 compare: global var / function is global object property❗️)

global variables don't get created by declaring variables in the top-level scope of a module (module scope).

Last updated