Espero les guste
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<canvas width="600" height="400"> </canvas>
<script>
var colores = ["blue", "red", "yellow", "black", "green"];
function dibujarCuadrado(listaColores, tamañoCuadrados) {
var pantalla = document.querySelector("canvas");
var pincel = pantalla.getContext("2d");
var control = tamañoCuadrados;
for (let i = 0; i < listaColores.length; i++) {
pincel.fillStyle = listaColores[i]; //propiedad
pincel.fillRect(control, 0, tamañoCuadrados, tamañoCuadrados); //función
pincel.strokeStyle = "black";
pincel.strokeRect(control, 0, tamañoCuadrados, tamañoCuadrados);
control = control + tamañoCuadrados;
}
}
dibujarCuadrado(colores, 50);
</script>
</body>
</html>