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 Capturing Visitor Input and Writing It to the Page

David Enus
David Enus
646 Points

(use = sign to put a value in a variable?

It is telling me to use a equal sign to put a value in a variable but i do not know where to place the equal sign to get it to work. Please help!

scripts.js
var answer 
prompt ("What day is it?");
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="scripts.js"></script>
</body>
</html>

3 Answers

Hey David,

the '=' will assign a value to a variable. So, for example var name = "David" means that the variable named 'name' has a value of David. So the task is asking you to assign the value of "prompt('What day is it?')" to the variable 'answer'. So it looks something like this:

var answer = prompt('What day is it?');
Raffael Dettling
Raffael Dettling
32,998 Points

Use the "=" operator like this to assign a value :)

var answer = prompt("What day is it?");
David Enus
David Enus
646 Points

Thank you for your explanations, it helps greatly.