Open In App

HTML DOM queueMicrotask() Method

The queueMicrotask() method, queues a microtask to be executed at a safe time prior to control returning to the browser’s event loop. The microtask is a short function that runs after the current task has completed its work and when there is no other code waiting to be run before control of the execution context is returned to the browser’s event loop. This lets your code run without interfering with any other, potentially higher priority, code that is pending.

Syntax:



self.queueMicrotask(function);

Parameters:

Return value: undefined.



Example: In this example, we will execute our function using this method.




<!DOCTYPE HTML>
<html>
  
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
  
    <p>
        HTML | DOM queueMicroTask() method
    </p>
      
    <button onclick="Geeks()">
        Click Here
    </button>
      
    <p id="a"></p>
      
    <script>
        var a = document.getElementById("a");
        function Geeks() {
            self.queueMicrotask(() => {
                a.innerHTML = "This is called "
                + "using queueMicrotask() method";
            })
        
    </script>
</body>
  
</html>

Output:

Before Clicking the Button:

After Clicking the Button:

Supported Browsers:


Article Tags :