Por 9.99€ al mes tendrás acceso completo a todos los cursos. Sin matrícula ni permanencia.
//Rectángulo sin borde
ctx.fillStyle = "red";
ctx.fillRect(10, 10, 50, 50);
ctx.save();
ctx.fillStyle = "blue";
ctx.fillRect(60, 60, 150, 150);
//Pinto un cuadrado rojo. Si comento la siguiente línea el rectángulo se pinta en azul
ctx.restore();
ctx.fillRect(160, 160, 250, 250);