how to get the height of window in javascript

JavaScript
//get screen height of the device by using
window.innerHeight
//get screen width of the device by using
window.innerWidth<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML = 
"Screen width is " + screen.width;
</script>window.screen.width
//or just
screen.width
Source

Also in JavaScript: