JavaScript Cheatsheet

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Beginning Code:

var canvas = document.getElementById("INSERT ID");


var ctx = canvas.getContext("2d");

Rect's with custom colours:


ctx.fillStyle = "#FFFFFF";
ctx.fillRect(x, y, w, h);

You might also like