JavaScript Cahnge Couleur de Strokect

const context = canvas.getContext('2d');

context.strokeStyle = 'blue';
context.strokeRect(100, 100, 50, 50);
Brumus14