I'm starting on canvas and despite very good documents over the web, specific questions arise. Home For example, I'd like to put a number inside a circle, but I've only got the number, not the circle. I have the following code:
var canvas = document.getElementById("canvas");
ctx = canvas.getContext('2d');
ctx.arc(100,75,50,0,2*Math.PI);
ctx.font="20px Georgia";
ctx.fillText("1",50,50);
<canvas id="canvas" width="200px" height="200px"></canvas>