Javascript

  • Instantly Edit Websites with Chrome

    Want to quickly mock up design changes, test content tweaks, or just play around with a webpage’s layout without touching the actual code? Chrome’s hidden document.designMode feature is your secret weapon. This simple command, typed directly into your browser’s developer console, transforms any webpage into a live, editable canvas. It’s a game-changer for stakeholders, designers, […]

    Read More
  • Event Bubbling in JavaScript

    JavaScript plays a pivotal role in building interactive and dynamic user interfaces, making it indispensable for modern web development. One concept crucial for efficient JavaScript use is Event Bubbling. In this blog post, we will jump into Event Bubbling in JavaScript, aiming to provide developers with a clear and concise understanding of the topic and […]

    Read More
  • Concurrency & Parallelism in JavaScript

    When it comes to JavaScript, two phrases that often come up in discussions among developers are concurrency and parallelism. Though they might seem complex, don’t worry! Today, we’ll break down these concepts into bite-sized chunks so you can truly understand their power and utility. This will help you get the most out of JavaScript for […]

    Read More
  • Mastering Asynchronous JavaScript & Event Loop

    JavaScript, with its asynchronous operations, breathes life into web applications, making them interactive, responsive and user-friendly. Today, we’re going to delve into the depths of Asynchronous JavaScript and its partner in crime, the Event Loop. Asynchronous JavaScript: Breaking It Down In JavaScript, operations are traditionally synchronous or performed one at a time in the order […]

    Read More
  • Inheritance And Prototype Chain in JavaScript

    Introduction JavaScript has positioned itself as an integral part of web development, fueling both client-side and server-side operations. Among JavaScript’s various concepts, inheritance and the prototype chain are two critical yet often misunderstood paradigms. This blog aims to shed light on these two aspects, enabling professionals and enthusiasts alike to leverage them effectively and elevate […]

    Read More
  • 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
  • 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
  • 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
  • Get values from PHP to Javascript

    When developing web applications, there are often times when you need to pass data from the server-side (PHP) to the client-side (JavaScript). While PHP and JavaScript are two separate programming languages running in different environments, there are a few techniques to efficiently share data between them. In this article, we’ll explore one of the most […]

    Read More