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 trialAlex Sanchez
4,501 Pointsspace
having trouble creating the spacing in document.write() example verb and adjective come as one no space is created.
var noun = prompt('type a noun'); var verb = prompt('Type a Verb'); var adjective = prompt('Type here a Adjective');
document.write(' there is a humble queen named '+noun+' And is very '+ verb + adjective +' The end ');
2 Answers
Scott Wyngarden
Courses Plus Student 16,700 PointsAll you need to do is add in another string that's just a space " "
It might be easier to see if you space out the code a little differently
var noun = prompt('type a noun');
var verb = prompt('Type a Verb');
var adjective = prompt('Type here a Adjective');
document.write(' there is a humble queen named ' +
noun +
' And is very ' +
verb +
' ' +
adjective +
' The end ');
Steven Parker
231,248 PointsJust add a literal space between the items.
So instead of "verb + adjective
", you might write "verb + ' ' + adjective
".