Property:
lineJoin:
Canvas:
your browser does not support the canvas tag
Code:
const c = document.getElementById('myCanvas');
const ctx = c.getContext('2d');
ctx.lineWidth = 10;
ctx.lineJoin = 'bevel';
ctx.moveTo(20, 20);
ctx.lineTo(100, 50);
ctx.lineTo(20, 100);
ctx.stroke();
Click the property values above to see the result
W3Schools.com - Play it