Skip to content

Instantly share code, notes, and snippets.

@rafaelqueiroz88
Created October 4, 2021 18:50
Show Gist options
  • Save rafaelqueiroz88/b370e301d3ef97ab4e22c20975ee75cf to your computer and use it in GitHub Desktop.
Save rafaelqueiroz88/b370e301d3ef97ab4e22c20975ee75cf to your computer and use it in GitHub Desktop.
Print Screensize
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