Created
October 4, 2021 18:50
-
-
Save rafaelqueiroz88/b370e301d3ef97ab4e22c20975ee75cf to your computer and use it in GitHub Desktop.
Print Screensize
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
const { innerWidth: width, innerHeight: height } = window; | |
console.log("Altura: " + window.innerHeight + ". Largura: " + window.innerWidth); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment