x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>JavaScript innerWidth and innerHeight Properties</h1>
6
<p id="demo"></p>
7
8
<script>
9
    let w = window.innerWidth;
10
    let h = window.innerHeight;
11
    document.getElementById("demo").innerHTML = "Width: " + w + "<br>Height: " + h;
12
</script>
13
14
</body>
15
</html>