outerheight - innerheight to set website according to window code example
Example 1: get window size javascript
const window {
width: window.innerWidth,
height: window.innerHeight
}
Example 2: window viewport size javascript
const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0);
const vh = Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0);
Example 3: js window dimensions
const client = {
width: document.documentElement.clientWidth,
height: document.documentElement.clientHeight
}