js get window width and height 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 window size javascript
const window {
width: window.innerWidth,
height: window.innerHeight
}
Example 3: js window dimensions
// better than using window.innerWidth / window.innerHeight
// because of scrollbars
const client = {
width: document.documentElement.clientWidth,
height: document.documentElement.clientHeight
}