1
2
<html>
3
<head>
4
<title>JavaScript body parentElement</title>
5
</head>
6
<body>
7
<h1 id="h1">JavaScript body parentElement</h1>
8
<p id="paragraph">from CloseTag JavaScript body parentElement</p>
9
<script>
10
let h1 = document.getElementById('h1')
11
/* check console the <html> element document.body.parentElement // result is <html> element */
12
console.log(document.body.parentElement)
13
</script>
14
</body>
15
</html>