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) Making Decisions with Conditional Statements Introducing Conditional Statements

thibaut noah
thibaut noah
8,692 Points

The code is good and work as expected but i got a bummer??? Tried adding and removing the spaces

I have no idea of what you expect.

app.js
var answer;
 answer = prompt("What is the best programming language?");
if (answer==='Javascript')
  alert("You are correct");
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>

3 Answers

Hi Thibaut,

Strings in javascript are case sensitive. 'Javascript' is not the same as 'JavaScript' Notice the capital 'S'

That's the only issue with your code.

thibaut noah
thibaut noah
8,692 Points

And i'm serious when i say "what do you expect", you ask something, you got it, and still challenge is not valid, do you want a parsing so any string containing the word "javascript" in it will work? Considering i havent see something like this in the previous video i doubt it...

thibaut noah
thibaut noah
8,692 Points

Oh i didnt notice the S, thanks very much, not use to see majuscules everywhere i didnt see it T_T Also if someone has a perfect code and still cant validate, remember that they are expecting us to put curly braces on single statement too....