React Virtual DOM
In React, whenever we tell React to make a change to the UI via setState or some other mechanism, the virtual DOM is updated first, and then the real DOM is updated to match the changes in the virtual DOM. This process is called “reconciliation”.
Whe...
wiredwhiz.hashnode.dev1 min read