#javascript
Read more stories on Hashnode
Articles with this tag
Web Workers are a simple means for web content to run scripts in background threads. If you're wondering how JavaScript, known for its...
JavaScript objects inherit features from one another through prototypes. Example: let car = { brand: "Toyota", model: "Camry", year: 2022, ...
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...