Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Mark Bacolcol
7,354 PointsCan 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

srikarvedantam
8,369 PointsHere'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'