Differentiate between Real DOM and Virtual DOM

React JS |

In this article we are going to show you Differentiate between Real DOM and Virtual DOM

Real DOM

  1. It updates slow.
  2. Can directly update HTML.
  3. Creates a new DOM if element updates.
  4. DOM manipulation is very expensive.
  5. Too much of memory wastage.

Virtual DOM

  1. It updates faster.
  2. Can’t directly update HTML.
  3. Updates the JSX if element updates.
  4. DOM manipulation is very easy.
  5. No memory wastage.