What is the difference between Real DOM and Virtual DOM?
Below are the main differences between Real DOM and Virtual DOM:
Real DOM | Virtual DOM |
---|---|
Updates are slow | Updates are fast |
DOM manipulation is very expensive. | DOM manipulation is very easy |
You can update HTML directly. | You Can’t directly update HTML |
It causes too much of memory wastage | There is no memory wastage |
Creates a new DOM if element updates | It updates the JSX if element update |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.