Algorithmic Art
Today, you will learn to create mesmerizing patterns using only the most basic of programming concepts.
But first, you have to get over your self-doubt.
// Example of a simple algorithmic art:
var canvas = document.createElement("canvas");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "#FF0000";
ctx.fillRect(0, 0, 100, 100);
document.body.appendChild(canvas);