Property:
miterLimit:
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 = 'miter';
ctx.miterLimit = 10;
ctx.moveTo(20, 20);
ctx.lineTo(50, 30);
ctx.lineTo(20, 40);
ctx.stroke();
Click the property values above to see the result
W3Schools.com - Play it