ctx.beginPath();
ctx.arc(, , , 0, 2 * Math.PI, false);
;
To draw a circle, create a 360° arc centered at (200, 200) with a radius of 100.
Then draw the circle on the <canvas> by either stroking it using the current stroke and line styles, or filling it using the current fill style.