We noticed you’re blocking ads

Thanks for visiting MillennialEYE. Our advertisers are important supporters of this site, and content cannot be accessed if ad-blocking software is activated.

In order to avoid adverse performance issues with this site, please white list https://millennialeye.com in your ad blocker then refresh this page.

Need help? Click here for instructions.

9.1.7 Checkerboard V2 Codehs

9.1.7 Checkerboard V2 Codehs File

// Create the canvas var canvas = document.getElementById('canvas'); var ctx = canvas.getContext('2d');

// Function to draw a square function drawSquare(x, y, color) { ctx.fillStyle = color; ctx.fillRect(x, y, squareSize, squareSize); } 9.1.7 Checkerboard V2 Codehs