JavaScript document.write Kullanımı

Konuya git Çalıştır
<!DOCTYPE html>
<html>
<body>

<h1>Web Sayfam</h1>
<p>Paragraf</p>

<script>
document.write("Merhaba js!");
</script>

</body>
</html>