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 trialChantal St Louis
5,524 PointsI don't understand the question. What is the correct answer please? Perhaps the answer will help me understand
The contents of the player variable is 'Jasmine' correct? So I thought to print the contents of the player variable using document.write(); would be - document.write("jasmine"); I have printed the contents 'Jasmine'. My answer is incorrect but I don't understand why.
var player = 'Jasmine';
document.write("player = Jasmine");
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="app.js"></script>
</body>
</html>
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsYou want to create a variable with a string, which as you've correctly defined is a string of characters in quotes.
What that does is keep the value as an assigned value to that variable. Including the quotes. JavaScript now recognises player
as a string variable.
So to display the value on the document you simply need to pass player
to document.write()
but not in a string in itself. And you don't need to assign any more values.
So you simply do
document.write(player);
Chantal St Louis
5,524 PointsChantal St Louis
5,524 PointsOk thank you Jonathan, your explanation helped a lot. I now understand. Thanks again