Writing

Field notes on frontend, systems & teams.

FEATUREDJavaScript·2 min

Mastering Error Handling: Best Practices in JavaScript

Discover essential techniques for robust error handling in JavaScript. Learn try-catch blocks, custom error classes, asynchronous error handling with Promises, and effective error logging for production environments.

Read article →
Mastering Error Handling: Best Practices in JavaScript
Understanding Lexical Scope in JavaScript: A Comprehensive Guide
JavaScript·3 min

Understanding Lexical Scope in JavaScript: A Comprehensive Guide

Explore the depths of lexical scope in JavaScript with this comprehensive guide. Learn through examples how variables are accessed and manipulated, shaping the foundation of efficient and error-resistant code.

A Comprehensive Guide to the JavaScript slice() Method: Exploring Arrays and Functions
JavaScript·4 min

A Comprehensive Guide to the JavaScript slice() Method: Exploring Arrays and Functions

Learn how to use the JavaScript `slice()` method to extract data from arrays and strings effectively. Explore syntax, examples, and its versatile applications in this tutorial.

Mastering Asynchronous Programming in JavaScript: A Comprehensive Guide to Promises and Async/Await
JavaScript·3 min

Mastering Asynchronous Programming in JavaScript: A Comprehensive Guide to Promises and Async/Await

Learn the ins and outs of asynchronous JavaScript programming with Promises and Async/Await. Discover best practices, error handling, and common pitfalls for smoother coding.

Secure JavaScript Development: Protecting Your Web Applications
JavaScript·3 min

Secure JavaScript Development: Protecting Your Web Applications

Secure coding practices and implementing defensive measures, you can significantly reduce the risk of vulnerabilities and protect your users’ data.

JavaScript’s New Array Functions: Enhancing Performance and Productivity
JavaScript·3 min

JavaScript’s New Array Functions: Enhancing Performance and Productivity

ES2023 has 6 new functions for us to use and write some good javascript.

What is Temporal Dead Zone in Javascript
JavaScript·3 min

What is Temporal Dead Zone in Javascript

Temporal Dead Zone (TDZ) is a concept in JavaScript that can cause unexpected behavior if not understood properly. The TDZ is the period of time between the creation of a variable and the point where it is initialized with a value.

Javascript Array tricks to improve your development skill
JavaScript·6 min

Javascript Array tricks to improve your development skill

We will look into some scenarios which are easy to do but some times we spend a lot of time completing those tasks. These javascript array tricks will help you work with different scenarios related to javascript arrays.