React is a famous library for building dynamic user interfaces. Data immutability is an idea that came from functional programming and applying it to design of your front end app can have many benefits. What is Data mutation? To understand the idea of data mutation, will need to step back to the foundations of programming and understand how … Continue reading How To Achieve Data Immutability in Javascript & React
Tag: Immutability
Learn About Immutability with Immer in React
In React applications the most important part is the application state. We can maintain local state within the component or global state across the application using Redux. Managing the state becomes crucial as we may have inconsistent app behavior or have bugs if the state is not managed properly. So while dealing with the state … Continue reading Learn About Immutability with Immer in React