Skip to content

Commit

Permalink
JS-Window-Height-&-Width.html
Browse files Browse the repository at this point in the history
  • Loading branch information
HamzaKhanLodhi2025 committed Feb 22, 2024
1 parent a138434 commit 8782c08
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions JS-Window-Height-&-Width.html
Original file line number Diff line number Diff line change
Expand Up @@ -458,4 +458,10 @@ <h3>JS Window Height &amp; Width</h3>

<hr />
</body>
<script>
let innerHight = window.innerHeight;
console.log(innerHight);
let outerHight = window.outerHeight;
console.log(outerHight);
</script>
</html>

0 comments on commit 8782c08

Please sign in to comment.