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 trialMahmoud Nasser
5,507 Pointsstring concatenation
bookmarksResults.innerHTML+='<div class="well">'+
'<h3>'+name+
'<a class="btn btn-default" target="_blank" href="'+url+'">visit</a>'+
'<a onclick="deleteBookMark(\''+url+'\')" class="btn btn-danger" href="#">Delete</a>'+
'</h3>'+
'</div>';
i dont understand the concatention in the deleteBookMark function call any help please
2 Answers
Steven Parker
232,176 PointsConcatenation is just joining strings together to make a longer one. In this example, it is used in part to make a string using the contents of variables, but it is also being used just to keep the code line from being really long.
Mahmoud Nasser
5,507 PointsThanks i got it Steve
Mahmoud Nasser
5,507 PointsMahmoud Nasser
5,507 Pointsi still have a problem in understanding this: deleteBookMark(\''+url+'\')
Steven Parker
232,176 PointsSteven Parker
232,176 PointsNormally, quote marks enclose a literal string. If you want to include a quote mark inside a string you have to do something special. The backslash (\) is known as the "escape character", and when you put it before a quote mark it means that quote mark is part of the string and does not indicate the end of it. The other quote mark that follows the first one does end the string. Then the
+url+
part just joins whatever is in the "url" variable to the string, and then joins that onto the next string (which also has an escaped quote mark).Here's a simpler example: