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

Artiium Arbyummi
PLUS
Artiium Arbyummi
Courses Plus Student 560 Points

Create a player variable with the string 'Jasmine' in it.? What I did was var player = "jasmine"; I need help

What I did was var player = "jasmine"; because I was under the impression that string is whatever is in the "" correct? but it says I got it wrong

app.js
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>

1 Answer

Hi there,

You pretty much have it - your code is valid, it just isn't exactly what the challenge directions ask for. The challenge asks for "Jasmine", but you're storing "jasmine". If you capitalize the 'J', you should pass. Your understanding of strings is exactly right - it'll store whatever is inside the quotes. Just have to watch those sneaky challenge directions!

Happy coding!

Artiium Arbyummi
Artiium Arbyummi
Courses Plus Student 560 Points

You're absolutely right! I just realized that, I need to slow down! Thank you!