innerheight js code example
Example 1: get window size javascript
const window {
width: window.innerWidth,
height: window.innerHeight
}
Example 2: window viewport size javascript
// viewport dimention
const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0);
const vh = Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0);