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