Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Promise Object</h1>
<h2>The Promise.resolve() Method</h2>
<p id="demo"></p>
<script>
// Create a Promise Object
let myPromise = Promise.resolve("All Well");
// Using then() to display result
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>