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 trialDongjai Cho
1,297 PointsDon't you have to write ${Search} to recall the input from the prompt?
I learned from past courses that you need to have ${variable} in order to recall from an input of a prompt. Am I wrong?
1 Answer
Steven Parker
231,236 PointsI'm not sure what you mean by "recall ", but that looks like the syntax for a replacement token in a template literal used to create a string. If you're not using a template literal, that would probably not be correct syntax.
Please show your code so we can see what is being done with it.
Dongjai Cho
1,297 PointsDongjai Cho
1,297 PointsI found out what was wrong.
So my question was about displaying a dynamic string on the screen.
And in order to do that we can use ${variable} method. and if I don't use that method, alternative way would be using 'document.write()'.
Steven Parker
231,236 PointsSteven Parker
231,236 PointsThere are other ways also. But always show the complete code along with the question, little bits of code may not convey the issue.