Skip to content

Instantly share code, notes, and snippets.

@bit101
Created October 21, 2017 18:43
Show Gist options
  • Save bit101/0e38522919565f652ed5be66007cc494 to your computer and use it in GitHub Desktop.
Save bit101/0e38522919565f652ed5be66007cc494 to your computer and use it in GitHub Desktop.
JavaScript Template for tutorials
var canvas = document.getElementById("canvas"),
context = canvas.getContext("2d"),
width = canvas.width = window.innerWidth,
height = canvas.height = window.innerHeight;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment