JavaScript Asynchronous Programming and Callbackshey In this blog I am going to talk about how Asynchronous Program works in Js which is a synchronous programming language. JavaScript is synchronous by default and is single-threaded. This means that code cannot create new threads and run in paralle...Jun 14, 2023·2 min read
How React Handles Rendering?Before your components are displayed on screen, they must be rendered by React. Understanding the steps in this process will help you think about how your code executes and explain its behavior. You will learn What rendering means in React When and...Mar 23, 2023·3 min read
Crazy interview Questions on Javascript functions (Part 1).Dear Fellow Readers, In this blog I am going to talk about functions in javascript. what it is and what is the craziest interview question you might get asked in your next round. well, functions are the heart of javascript. since the definition is co...Mar 19, 2023·2 min read
How to save files to the server using NodejsIn This blog, I am gonna talk about how to save files to the server using nodejs. this is something I recently learned when building a project. we do this in middleware. well if you don't know what is middleware then I'll let you know. Middleware is ...Mar 17, 2023·4 min read
Web1.0 vs Web2.0 vs Web3.0Hi guys, In this blog, I am gonna write about the difference between web1.0, web2.0, and web3.0. well if you don't know the difference and are curious to know just read this blog it will give you a brief overview. In order to understand web1.0, let m...Mar 14, 2023·3 min read