const myCanvas = document.getElementById("myCanvas"); const ctx = myCanvas.getContext("2d"); ctx.beginPath(); ctx.moveTo(20, 20); ctx.lineTo(80, 20); ctx.moveTo(20, 20); ctx.lineTo(20, 100); ctx.lineTo(50, 120); ctx.lineTo(80, 70); ctx.lineTo(80, 20); ctx.strokeStyle = "white"; ctx.fillStyle = "purple"; ctx.fill(); ctx.arc(80,70, 10, 0, 2 * Math.PI); ctx.stroke();