html get window size code example
Example 1: get window size javascript
const window {
width: window.innerWidth,
height: window.innerHeight
}
Example 2: js know size of screen
alert("Your screen resolution is: " + screen.width + "x" + screen.height)