global and globalThis
Global : - The interface of global object is depends upon the platform or execution context in which the script is executing. Such as for : - Node.js -> global Window -> window WorkerSpace -> self
Jun 14, 20262 min read2
Search for a command to run...
Articles tagged with #chaicode
Global : - The interface of global object is depends upon the platform or execution context in which the script is executing. Such as for : - Node.js -> global Window -> window WorkerSpace -> self
Variable: - In JavaScript variable are the data container or memory place that contains/store the data. In JavaScript there are 4 ways to store the data in a variable. using let, using const, using va