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 trialArtiium Arbyummi
Courses Plus Student 560 PointsVar help and adding the function
Use the document.write() function to print the contents of the player variable to the page.
I used the var player = "Jasmine"; now it wants me to use the document.write a function to print the contents of the player variable, I think I know but not sure
var player = "Jasmine";
document.write("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">
document.write("Jasmine");
</script>
</body>
</html>
5 Answers
Katie Wood
19,141 PointsYou're close - you're writing the correct value, but it wants you to use the variable (went to all that trouble to save it, right?) - it would look something like this:
var player = "Jasmine";
document.write(player);
Artiium Arbyummi
Courses Plus Student 560 PointsThank you! Ok I got the concept now! Thank you!
Katie Wood
19,141 PointsYou're most welcome - and that's great!
Volodymyr Rusnyk
9,657 PointsI don't understand?
Volodymyr Rusnyk
9,657 Pointsvar player ="Jasmine"; document.write =(player);
Volodymyr Rusnyk
9,657 Pointsno, I understand thanks for help