Created
June 27, 2020 17:52
-
-
Save jamiejohnsonkc/f1efaa95a3b2542b14c582a3d60ec5f7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| To get the windows' dimensions : | |
| var width = window.innerWidth; | |
| var height = window.innerHeight; | |
| To get the screen's dimensions : | |
| var width = screen.width; | |
| var height = screen.height; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment