Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Promise Object</h1> <h2>The Promise.reject() Method</h2> <p id="demo"></p> <script> // Create a Promise Object let myPromise = Promise.reject("Not Allowed"); // Using then() myPromise.then(x => myDisplay(x), x => myDisplay(x)); // Funtion to run when Promise is settled: function myDisplay(some) { document.getElementById("demo").innerHTML = some; } </script> </body> </html>