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 trialNicole Blom
1,882 PointsSolution without randomColor function using template literal, is this okay to do? (See my solution)
let html = '';
function getRandomByte() {
return Math.floor(Math.random() * 256 );
}
for ( let i = 0; i <= 10; i += 1 ) {
html += `<div style="background-color:rgb(${getRandomByte()},${getRandomByte()},${getRandomByte()})"></div>`;
}
document.write(html);
2 Answers
Steven Parker
231,236 PointsThere's rarely only one way to reach a solution, and this will certainly do the same job.
Another approach (that might be easier to read) would be to keep the randomColor function, but incorporate a template literal in it also.
Fran ADP
6,304 Pointskeep the random Color text, butintroduce a template literal in it.
Nicole Blom
1,882 PointsWhy is keeping the randomColor function necessary when you can shorten the code without it?