#web-development
Read more stories on Hashnode
Articles with this tag
The this keyword refers to different objects depending on how it is used. this in global scope If this is called or used in a global scope it refers...
Let's begin by exploring the concept of scopes: what exactly are scopes? Scope is the current context of execution in which values and expressions...
Hoisting is a special behavior of the JavaScript interpreter. Hoisting means that function and variable declarations are moved to the top of their...
When a JavaScript file is executed, the code is parsed line by line. Whenever a function call is encountered, an execution context is created, and the...