次のドキュメントでは、
<!doctype html>
<html>
<head>
<script language="javascript" src="example.js"></script>
</head>
<body>
</body>
</html>
どこexample.js
にある:
document.addEventListener('DOMContentLoaded', function () {
console.log('hello');
});
ログステートメントは実行されることが保証されていますか?