Web Development

  • Event Loop & Callback Queue

    Delve into the inner workings of the JavaScript event loop and callback queue and learn how to optimize your code for better performance.

    Read More
  • What is Atomic Design Pattern?

    Atomic Design is the one of methodology that can accelerate the process of creating modular designs.

    Read More
  • How can I parse a string with a comma thousand separator to a number?

    This is useful when we need to do calculations based on the user input. For formatting the entered number in front end we add comma as thousand separator. But problem is when we try to parse it.

    Read More
  • Javascript – The Weird Parts

    JavaScript is a powerful and versatile programming language that has been widely adopted by developers around the world. However, as with any programming language, javascript possesses certain quirks and weird parts that can cause confusion and frustration for developers. One such example is the behavior of the built-in JavaScript functions and operators when dealing with […]

    Read More
  • Nodemon not refreshing page automatically

    while setting up a MERN app, i was using nodemon to reflect code edits and render the new code in real time. I used npm i -g nodemon which didn't work.

    Read More
  • Get last element of Array in Javascript

    You can always do it in the fastest way. If performance is a deal breaker for you where you are writing code for million concurrent connections then arr.length -1 is your thing. But if you fancy some ES6 like I do, then read on..

    Read More
  • jQuery Performance Optimization for Enhanced User Experience

    As the digital world becomes increasingly sophisticated, developers must continuously hone their skills to keep up with these advancements. One area that deserves close attention is jQuery performance optimization. In today’s technologically driven environment, web development is no longer about creating a functional site but crafting a user experience that is fast, interactive and efficient. […]

    Read More
  • Start a basic server using express

    Express is an amazing framework. We can start running a server by writing only 4 lines of code. After that, we can also set routes and assign responses if someone is requesting those routes. For now, let's spin up our basic server.

    Read More
  • Pseudo Elements and Pseudo Classes

    Understanding pseudo elements and pseudo classes is crucial to fully exploit the versatility and power of CSS. They provide a broad range of functionality that can bring your web designs to life with a level of detail and nuance that would be challenging to achieve otherwise. In this article, we’re going to delve into the […]

    Read More