Writing on software and technologies.

I document my learning and experiences along the way, collected in a chronological order!.

Await keyword can now be used outside an async block!" 💡

Previously, await could only be used within async functions, but with the introduction of recent JavaScript updates, we now have more flexibility. In this post, we'll dive into this exciting development and explore how using await outside of async blocks opens up new possibilities for writing cleaner and more concise code.

A guide to the top 10 React Hooks!" 🪝

Hooks provide a more concise and intuitive approach compared to class components, enabling developers to build robust and functional UIs with ease. In this article, we'll explore the top 10 Hooks in React, diving into their purpose, usage, and how they can level up your React development game..

What in the world is "this" 👈

In the world of JavaScript, the 'this' keyword has long been a puzzle for many developers. Its significance and behavior often elude even seasoned professionals. In this in-depth article, we embark on an enlightening journey to unravel the true nature of 'this' in JavaScript.

Async/Await : The Dynamic Duo" 💪

Managing callbacks and promises can quickly become a daunting task. Fear not! Enter the dynamic duo of async/await.