javascript get page height in pixels code example
Example 1: get window size javascript
const window {
width: window.innerWidth,
height: window.innerHeight
}
Example 2: get screen width javascript
window.screen.width
//or just
screen.width
const window {
width: window.innerWidth,
height: window.innerHeight
}
window.screen.width
//or just
screen.width