<h1 id="demo"></h1>
<script>
function mostrar_resultado(resultado)
{
document.getElementById("demo").innerHTML = resultado;
}
async function myDisplay(numero1, numero2) {
let myPromise = new Promise(function(resolve) {
setTimeout(function() {
resultado = numero1 + numero2;
resolve(resultado);}, 3000);
});
mostrar_resultado(await myPromise);
}
myDisplay(1, 3);
</script>
</body>
</html>