Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialGeovani Mejia
Front End Web Development Techdegree Student 7,940 PointsReading Code
I am having hard time understanding this code. I understand that red, green, blue store a number after the Math.random () function is executed. I don't understand how the variables rgbColor and html create a circle. Any insight would be appreciated.
red = Math.floor(Math.random() * 256 ); green = Math.floor(Math.random() * 256 ); blue = Math.floor(Math.random() * 256 ); rgbColor = 'rgb(' + red + ',' + green + ',' + blue + ')'; html += '<div style="background-color:' + rgbColor + '"></div>';
1 Answer
Jamie Reardon
Treehouse Project ReviewerThe circle style for the divs is coming from the stylesheet attached to the html file.
Geovani Mejia
Front End Web Development Techdegree Student 7,940 PointsGeovani Mejia
Front End Web Development Techdegree Student 7,940 Pointsthanks!