I don't want to add eventListener DOMContentloaded
for a moment I just want to is there a way to make a script tag executed after this following div
tag
<html>
<head>
</head>
<body>
<div id="name">12 </div>
<script>
var name = document.getElementById("name");
name.innerHTML = "13";
</script
</body>
Also want to know why the script tag is executed before the DOM gets loaded