Virtual DOM in React
React maintain a copy of real DOM to update only part of the DOM tree that changes instead of the whole tree. It is known as virtual DOM. Philipe Bille discussed different algorithms related to this in the following paper https://grfia.dlsi.ua.es/ml/algorithms/references/editsurvey_bille.pdf React is using Diffing algorithms which uses heuristic approach. The main steps of this algorithms…
View On WordPress














