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 trial

JavaScript JavaScript Basics (Retired) Storing and Tracking Information with Variables Create a variable with a string

Challenge 2 Task 2

Is everything suppose to be in quotes in document.write?

app.js
var player = "Jasmine";
document.write(var player = "Jasmine");
index.html
<!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>

2 Answers

Colin Bell
Colin Bell
29,679 Points

You're setting your variable in your first line. Your second line should just write whatever the player variable is set as. So the code should just be:

var player = "Jasmine";
document.write(player);
TJ Egan
TJ Egan
14,420 Points

Since you set the variable in the line before, all you have to do is pass the variable name into the function:

document.write(player);