Watch a demo of different values of the bezierCurveTo() method.
Or click a specific value to see the result:
const c = document.getElementById('myCanvas'); const ctx = c.getContext('2d'); ctx.beginPath(); ctx.moveTo(20,20); ctx.bezierCurveTo(20,150,200,100,200,20); ctx.stroke();