Posts
All the articles I've posted.
Writing more readable promises using async and await
Published: at 08:27 AMTalking about the power of async and await in JavaScript for improved promise readability, encapsulating asynchronous code and streamlining chaining for enhanced clarity.
TIL Callback Hell and Promise Chaining in JavaScript
Published: at 06:52 PMAddressing the challenges of callback hell in JavaScript by exploring solutions like Promises, Async/Await, and modularization for enhanced code readability and maintainability.
How to use switch statement in JavaScript and emulate it in Python?
Published: at 01:18 PMInvestigate the versatility of JavaScript's switch statement for conditional actions and its Python equivalents using if-elif-else statements or dictionary mapping, showcasing the flexibility of Python's constructs.
TIL "this" keyword in JavaScript
Published: at 09:35 AMNavigating the nuances of "this" in JavaScript objects, from its behaviour within object methods to potential pitfalls with arrow functions.
Let JS do the work!
Published: at 06:08 PMExplore the dynamic synergy between JavaScript and HTML in crafting a personalized siblings list dynamically injected into a designated <ul> element, providing insights into the collaborative interplay between HTML and JavaScript creativity.
How to vertically align two or more elements in a div using flexbox?
Published: at 01:22 PMExplore the ease of CSS flexbox for seamless alignment in web layouts through a straightforward example, simplifying the complexities of positioning elements.