Watch a demo of different values of the arc() method.
Or click a specific value to see the result:
const c = document.getElementById('myCanvas'); const ctx = c.getContext('2d'); ctx.beginPath(); ctx.arc(100,75,50,0*Math.PI,1.5*Math.PI); ctx.stroke();