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 trial

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops The Refactor Challenge, Part 2

Mark Bacolcol
Mark Bacolcol
7,354 Points

Can Someone Help Breakdown this String?

I'm having some trouble understanding how this string was put together. What's making it confusing for me is the use of quotations marks and the blend of JS, HTML and CSS.

html += '<div style="background-color:' + rgbColor + '"></div>';

1 Answer

Here's a breakdown of the statement into 3 parts:

var backgroundColor = "background-color:"  + rgbColor; // Sets the 'background-color' property with 'rgbColor' value
var divHTML = "<div style=" + backgroundColor + "></div>"; // Builds the <div> tag with 'style' set to the above 'builtbackgroundColor'
html += divHTML; // Appends the built '<div>...</div>' string to 'html'