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 trialMark Clayton
5,039 PointsWhat 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
var answer = prompt('What is the best programming language?');
if ( answer === 'Javascript' ) {
alert("You are correct");
}
<!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
11,368 PointsHi Mark! The correct answer should be JavaScript!
Mitchell Congdon
3,616 PointsI'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
3,616 Pointsvar answer = prompt('What is the best programming language?'); if (answer === "JavaScript") { alert("you are correct"); }
correct answer
Jeff Lemay
14,268 PointsJeff Lemay
14,268 PointsThose darn capital letters!