how to get height and width of screen in javascript code example
Example 1: how to get the height of window in javascript
//get screen height of the device by using
window.innerHeight
//get screen width of the device by using
window.innerWidth
Example 2: get the size of the screen javascript
window.screen.height;
window.screen.width;