Getting the window width and height including scrollbars

const windowInnerWidth  = window.innerWidth;
const windowInnerHeight = window.innerHeight;
}