Created
December 19, 2019 04:51
-
-
Save waimyokyaw/48cb3042d742029d3f474c83ca194ac6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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