/blogs


Sun Oct 15 2023

2 min read

Understanding Object.seal(), Object.freeze(), and Object.preventExtensions() in JavaScript

Three essential methods for controlling the mutability of objects in JavaScript are Object.seal(), Object.freeze(), and Object.preventExtensions(). These methods play a crucial role in ensuring the integrity and immutability of objects, providing developers with the tools they need to maintain data consistency and security.

Tue Oct 10 2023

3 min read

Unveiling Interaction to Next Paint (INP) - A Vital Web Metric

Interaction to Next Paint (INP) is a vital web metric that plays a significant role in user experience, SEO rankings, and overall website success.

Fri Sep 23 2022

5 min read

Choosing the right JS framework for your next project is now easy!

JavaScript (JS) is one of the coolest and most used programming language which tops the charts as the most popular technology with over 65% of developer using it for development according to the StackOverflow Developer Survey 2022

Tue Jun 14 2022

5 min read

7 different JavaScript console methods you never knew existed 🤯

So being a JavaScript developer whenever I have to debug my code, the first thing that comes to my mind is adding a console.log(). Is this the only way of debugging using a console object? Why all my console data looks similar? What if I can add some colors to my console data? What if I can organize my data correctly?

Mon Mar 21 2022

2 min read

How I built my portfolio using Next.js, TailwindCSS, TypeScript and Framer Motion

In this blog, I'll walk you through the tech stack I used for creating my personal portfolio and the reason behind choosing that particular package/library.

Sun May 24 2020

6 min read

Create a Pokedex using HTML5, CSS3, Vanilla JavaScript

Who doesn’t like Pokemon? Well no one!! 😍 This was one of my favorite shows which I used to watch in my childhood. So, let’s create a deck of some of the pokemon using HTML, CSS and JavaScript.

Fri Mar 27 2020

5 min read

AJAX 4 Way Requests

In this blog, we’ll be learning about what is AJAX and what are the various ways of making an AJAX request by creating a simple Ron Swanson Random Quote Generator.