global scope
Last updated
Was this helpful?
Last updated
Was this helpful?
โฉ โฉ global
(in a programming environment) the scope that contains, and is visible in, all other scopes.
global object - an that always exists in the .
globalThis - identifier for the global object.
window - global object in browser.
self - global object in web worker.
global - global object in Node.js.
isCurrentlyInGlobalScope() - check if current context is in global scope.
Functions created with the constructor always are created in the global scope.
ringojs โฉ โญ๏ธ
Ch. 3:
Ch. 4: