
Qwik: Just another JS framework?
In this article I write what is Qwik all about
Search for a command to run...

In this article I write what is Qwik all about

Understand how redux deals with multiple reducers and the implementation of combineReducers method

Understand how exactly redux works, along with the implementation of the createStore method

Understand the Observer design pattern with a real-world example

Ahh, one more article on "Event capturing, bubbling and delegation". Well, if you can deduce the output of the following code correctly then you can skip reading the rest of the article What will be logged on console when you click on the '"greatgra...

Problem Javascript is single-threaded and synchronous. When it encounters a function that calculates a computationally expensive value, the entire program is on halt till the value is calculated. Now after a certain point, we cannot optimize the calc...

This is one of the most frequently asked interview questions for a Javascript developer role. Sit back, and understand while I try my best to explain the problem and its solution. Problem In Javascript, the primitive data types are compared by values...

This is a beginner-friendly post explaining the use of useEffect hook in React. There are three phases of a React component, Mounting: When the component has rendered for the first time Updating: When the component has re-rendered due to a state cha...

Generally when a React Developer is asked, 'what are the advantages of hooks or why hooks were introduced?', the most common answer would be: "So that we can have state in functional components". Even I used to give the same answer before I knew bett...