Sixtus's Blog
RSS FeedWelcome to my blog! Through this blog, I aim to share the insights and knowledge I've gathered over the years as a software engineer. Stay tuned for valuable learnings.
Recent Posts
A Closer Look at the `this` Keyword in JavaScript, Part 1
Published: at 02:55 AMThe JavaScript “this” keyword can be daunting to grasp, but in this article, I exhaustively unravelled it with detailed examples.
JavaScript Internals: The JavaScript Runtime Environment
Published: at 10:49 PMDive into the internals of JavaScript runtime environment in browsers, including the event loop, call stack, and how asynchronous operations are handled.
JavaScript Internals: The Execution Context
Published: at 09:21 AMA detailed guide on how global and function execution contexts operate, their phases, along with the call stack, scope chain, lexical environments, variable environments, and the `this` keyword.
Hoisting in JavaScript: A Complete Guide, Part 2
Published: at 11:37 PMA clear explanation with examples of Temporal Dead Zone (TDZ), and how classes are hoisted in JavaScript.