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

how do I use document.write to write the value of var on a page

I'm stuck on a challenge question.

var player = 'Jasmine'; is working, then the questions asks to use function document.write () to add the contents of var to the page.

app.js

index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
<script> var player = document.write ('Jasmine')</script>
</body>
</html>

3 Answers

Hey Amina,

You use the document.write function like this:

var example = 'Cats are awesome!';
document.write(example);

What's going on here? I've declared a variable called example which stores a string ('Cats are awesome!'). Then, I pass that variable as an argument to the document.write function.

Best,

Jacob

Awesome. it worked.

Gertrude Dawson
Gertrude Dawson
5,371 Points

I hate that I can't cut and paste in Workspaces. I hate not being able to open multiple Workspaces so that I can use my previous work as a blueprint for current Workspaces.