this keyword in javaScript.Let's understand the most confusing keyword thoroughly. this keyword inside global space represents the global object. It will print the window object inside the browser. Because here browser is the environment for js code. Here I print this insid...Mar 14, 2024·3 min read
Named Export vs Default Export in ES6ES6 provides us to import a module and use it in other files. In React one can use stateless components in other components by exporting the components from their respective modules. ES6 provides two ways to export a module from a file: named export ...Jul 9, 2023·2 min read
How JavaScript handles the exectution of Runtime feature..So, till now you must be already aware that when you run a JS Code. It becomes a process. For a process, we have access to a memory area in which there are multiple components like Call Stack. But there are a few other components as well that will un...May 15, 2023·5 min read
Characteristics of JavaScript:JavaScript is single-threaded, then how does it manage time-consuming tasks like downloading? JavaScript supports synchronous execution of code (JS will execute everything one after another. If You have some time-consuming task, JS will wait for it t...May 9, 2023·3 min read
What is the thread?All of us know that if we make a program like test.js and run it on our computer becomes a process. Program in a running state is a process. Before understanding what is a thread, first of all, understand the processor and core. Processor:- It is an...May 5, 2023·2 min read