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

What is wrong with this conditional statement? if ( answer === 'Javascript' ) { alert("You are correct"); }

Im currently taking the conditional statement challenge and the task asks me to add a conditional statement that opens an alert box with the phrase "You are correct" if the answer to the question "What is the best programming language?" question is supplied with the answer "Javascript" the code does this when I preview it but the code challage says the code is wrong

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

2 Answers

Julian Aramburu
Julian Aramburu
11,368 Points

Hi Mark! The correct answer should be JavaScript!

Jeff Lemay
Jeff Lemay
14,268 Points

Those darn capital letters!

Mitchell Congdon
Mitchell Congdon
3,616 Points

I'm having the same issue. var answer = prompt('What is the best programming language?'); if answer === "JavaScript" { alert("you are correct"); }

says task one no longer passing

Mitchell Congdon
Mitchell Congdon
3,616 Points

var answer = prompt('What is the best programming language?'); if (answer === "JavaScript") { alert("you are correct"); }

correct answer