Date: June 27, 2025

📘 Challenge: Bucktooth Bunny (Lesson 4: Variables)


What I Learned:

Today’s challenge introduced variables in p5.js. Instead of hardcoding values directly into my shapes (like eye size or tooth length), I learned how to define those values once and reuse them. That way, I can adjust an entire feature (like both eyes) just by changing a single number.

This gave me my first real taste of why variables matter in programming — they make your code cleaner, more flexible, and easier to tweak. I started with let eyeSize = 10 and let toothLength = 20, and used those inside the ellipse() and rect() functions.


What Went Well:


What Went Wrong:


What I Can Do Better: