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 trialKirby Abogaa
3,058 PointsSolution to Challenge
So uhm...I thought the challenge was abit easy so I tried to play around and nested another for loop inside and used an array for the colors...
after a good 20 - 25 minutes... here is what i got...it was a good exercise..
<script>
var html = '';
var color = ['red', 'green', 'blue'];
var rgbColor;
function getColor() {
var num = Math.floor(Math.random() * 256 );
return num;
}
for ( var i = 1; i <= 10; i++ ) {
for ( var j=0; j<3; j++) {
color[j] = getColor();
rgbColor = 'rgb(' + color[0] + ',' + color[1] + ',' + color[2] + ')';
}
html += '<div style="background-color:' + rgbColor + '"></div>';
}
document.write(html);
</script>
Just sharin'!
Peace v ^_^ v