All writings
Write your own polyfill
In the new era of web development we never think of writing custom polyfill because whatever frameworks we use, those use polyfill under the...
Handle prop drilling at ease
If you are breaking your component into multiple pieces in react, then you would have gone through a process of passing data into an extrem...
Mutate object or arrays without changing original source
If you are building a javascript application irrespective of any framework, you would have faced a specific issue where you want to modify...
Deep dive into CSS variable
Do you remember the day when you got first introduction of variable. Yes I remember properly. I got introduced to variables like others that...
Basics of package.json
If you have worked with any front-end applications which are related to node or npm there should be a file called `package.json` where we ge...
Setup a basic react application with webpack and babel
We generally use create-react-app (CRA) CLI to generate a basic react application with zero configuration. That's cool because you don't hav...
Customize the browser Context-menu in your next React app
Have you ever thought of customizing native Browser Context-menu like whenever a user will right-click on any specific element you want some...