Friday, September 27, 2024
Google search engine
HomeLanguagesHow to understand by Virtual DOM ?

How to understand by Virtual DOM ?

DOM is a Document Object Model which represents the content of XML or HTML document as a tree structure so that the programs can be read, access, and change in the document structure, style, and content.  

Let’s see how a document is parsed by a DOM. Consider the following sample HTML code.

HTML




<html>
  
<head>
    <title>DOM example</title>
<body>
    <div>
        <h1>Document Object Model</h1>
    </div>
</body>
</head>
  
</html>


The above code creates a tree structure as shown below:

DOM Structure

Now we got a basic idea of what DOM is, If you are still unsure about it please learn here.

Virtual DOM: The name itself says that it is a virtually created DOM. Virtual DOM is exactly like DOM and it has all the properties that DOM has. But the main difference is Whenever a code runs JavaScript Framework updates the whole DOM at once which gives a slow performance. whereas virtual DOM updates only the modified part of the DOM. Let’s understand clearly:

When you run a code, the web page is divided into different modules. So, virtual DOM compares it with DOM and checks if there is any difference. If it finds a difference then DOM updates only the modified part and the other part remains the same. 

As shown in the above image, virtual DOM is different from DOM, now DOM updates the child components which are different and the other remains exactly the same. This increases the performance. 

Now let’s see an example of how Virtual DOM works:

Creating a React application:

  • Step 1: Create a react application with the following command.
npx create-react-app foldername
  • Step 2: Change your directory to the newly created folder with the following command.
cd foldername

Project Structure: It will look like the following:

Project Structure

Implementation: Write down the following code in respective files.

Filename: index.html

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <title>React App</title>
</head>
  
<body>
    <div id="DOM_root"></div>
    <div id="root"></div>
</body>
  
</html>


Filename: index.js

Javascript




import React from "react";
import ReactDOM from "react-dom";
  
function time() {
  
  // DOM using HTML syntax
  document.getElementById("DOM_root").innerHTML
    = new Date().toLocaleTimeString();
  
  // Virtual DOM using react syntax
  const Virtual_element = React.createElement(
    "h4",
    null,
    "React DOM =  ",
    new Date().toLocaleTimeString()
  );
  
  ReactDOM.render(Virtual_element, 
    document.getElementById("root"));
}
  
setInterval(time, 1000);


Step to Run Application: Run the application using the following command from the root directory of the project:

npm start

Output: Open your browser and right-click on the screen and select Inspect. You can see the following output.

As you can see from the above output, the whole div element is updating along with the time in the DOM. Whereas in virtual DOM only the h4 element is been updating and every other element is remaining the same. So this shows that virtual DOM finds the modified part and updates only that modified part.

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments