| The UPDATE process is very slow in this. | The update process is much faster here. |
| It can directly update the HTML. | It can't directly update the HTML. |
| It creates a new DOM if the ELEMENT is updated. | It updates the JSX if there is any update on an element. |
| DOM manipulation related to a Real DOM is very complicated. | DOM Manipulation related to a Virtual DOM is effortless. |
| There is a lot of MEMORY wastage in a Real DOM. | There are no cases of memory wastage in a Virtual DOM. |