Open In App

JavaScript Promise finally() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The finally() method of the Promise object is used to return a Promise when a Promise is settled, that is, it is either fulfilled or rejected. A Promise is a JavaScript object which generates a value after an asynchronous function executes successfully. When it does not execute successfully due to a timeout, then it generates an error.

It can be used to perform cleanup tasks once the promise is settled as it is always executed irrespective of whether the promise is fulfilled or rejected. It also prevents the duplication of code in the then() and catch() methods of the Promise.

Syntax:

task.finally(function() {
  // Task to be performed when
  // the promise is settled 
});

Parameters: This method has a single parameter as mentioned above and described below:

  • onFinally: It is the function that will be called when the Promise is settled.

Return Value: It returns a Promise whose finally handler is set to the specified function.

The below example demonstrates the finally() method:

Example:

Javascript




// Define the Promise
let task = new Promise((resolve, reject) => {
  setTimeout(() => {
  
    // Reject the Promise
    reject("Promise has been rejected!");
  }, 2000);
});
  
task
  .then(
    (data) => {
      console.log(data);
    },
  
    // Handle any error
    (error) => {
      console.log("Error:", error);
    }
  )
  
  // Specify the code to be executed 
  // after the Promise is settled
  .finally(() => {
    console.log(
      "This is finally() block that is " +
      "executed after Promise is settled"
    );
  });


Output:

Error: Promise has been rejected!
This is finally() block that is executed after Promise is settled

Last Updated : 17 Mar, 2021
Like Article
Save Article
Share your thoughts in the comments
Similar Reads