Skip to content

Instantly share code, notes, and snippets.

@waimyokyaw
Created December 19, 2019 04:51
Show Gist options
  • Save waimyokyaw/48cb3042d742029d3f474c83ca194ac6 to your computer and use it in GitHub Desktop.
Save waimyokyaw/48cb3042d742029d3f474c83ca194ac6 to your computer and use it in GitHub Desktop.
showBrowserSize () {
const size = {
width: window.innerWidth || document.body.clientWidth,
height: window.innerHeight || document.body.clientHeight
};
console.log('Width * Height', size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment