ここで皆さんと共有するのは、私がキャンバスを学習していたときに行った、中空の円と実線の円を描く練習です。
var Canvas=document.getElementById("canvas");
var cxt= Canvas.getContext("2d");
//中空の円を描画します
cxt.beginPath();
cxt.arc(200,200,50,0,360,false);
cxt .lineWidth= 5;
cxt.ストロークスタイル="green";
cxt.ストローク();//中空の円を描画します
cxt.closePath();
//実線の円を描画します
cxt. beginPath();
cxt.arc(200,100,50,0,360,false);
cxt.fillStyle="red";//塗りつぶしの色、デフォルトは黒です
cxt.fill ();// 実線の円を描画します
cxt.closePath();
//中空と実体の組み合わせ
cxt.beginPath();
cxt.arc(300,300,50,0,360, false);
cxt.fillStyle="red";
cxt.fill();
cxt.ストロークスタイル="green";
cxt.ストローク();
cxt.closePath( );