blob: a48327ceb36dd3ad65727365470086faa4adf1b2 (
plain)
1
2
3
4
5
6
7
8
9
|
const canvas = document.getElementById("JSCanvas");
const ctx = canvas.getContext("2d");
ctx.strokeStyle = "blue"
ctx.beginPath();
ctx.moveTo(0, 0);
ctx.lineTo(511, 511);
ctx.stroke();
|