JS desenhe círculo
ctx.beginPath();
/* ctx.arc(x, y, radius, startAngle, endAngle[, counterclockwise] */
ctx.arc(20, 50, 10, 0, 2*Math.PI)
ctx.stroke();
// or ctx.fill();
just-saved-you-a-stackoverflow-visit