I can't see the stroke from the rectangle. When I create a circle or a triangle, I can see the stroke but when I create a rectangle I can't see it.
This is the code for the rectangle.
context.beginPath();
context.fillStyle = "White";
context.fillRect(470,300,50,50);
context.lineWidth = 3;
context.strokeStyle = "black";
context.stroke();
context.closePath();
This is the result that I get right now..
Thank you in advance for the help!