2
Can someone explain to me why the <h1>
and the <p>
only appear after closing the alert box?
<body>
<h1>Meu primeiro programa em JS</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Maiores quia culpa nesciunt earum! Placeat, natus.</p>
<script>
window.alert('Meu primeiro programa em JS');
</script>
</body>