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