context.beginPath();
context.strokeStyle="green";
context.fillStyle="green";
context.moveTo(250,500);
context.lineTo(200,500);
context.arc(500,500,300,(Math.PI/180)*180,(Math.PI/180)*300,false);
// Here I don't know what the x and y are, in case I want to draw a line with a
//given length and NOT a line to a particular point (x,y)
context.stroke(); context.closePath();