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 trialDavid 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!
var answer
prompt ("What day is it?");
<!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
dojewqveaq
11,393 PointsHey 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
32,999 PointsUse the "=" operator like this to assign a value :)
var answer = prompt("What day is it?");
David Enus
646 PointsThank you for your explanations, it helps greatly.