Search
finally
In the code give below, the statement console.log("Order processing completed."); is repeated in both the then and catch methods. Please rewrite the code using the finally method to avoid repetition of the statement.
console.log("Order processing completed.");
then
catch