Draw a circle

ctx.beginPath();

ctx.arc(, , , 0, 2 * Math.PI, false);

;

To draw a circle, create a 360° arc centered at (000, 000) with a radius of 000.

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.