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 trialJaya Chakladar
986 Pointscannot proceed and not sure what is wrong with code.
var answer = prompt('What is the best programming language'); if (answer.toUpperCase() === 'JAVASCRIPT') { alert('You are correct') }
var answer = prompt('What is the best programming language');
if (answer.toUpperCase() === '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>
Jeff Lemay
14,268 PointsIt is correct code, problem is OP is doing more than the challenge asked for.
2 Answers
Jeff Lemay
14,268 PointsThey didn't ask you to use the toUpperCase() method here. You're also missing a question mark at the end of the prompt string, not sure if that would cause an issue too.
Jaya Chakladar
986 PointsYes correct ! ? and the toUpperCase was causing the problem. Thanks.
Jeff Lemay
14,268 PointsYou are welcome!
Byron Stine
4,877 PointsThe code runs properly for me. But I recommend put a ; (semicolon) after the alert() method for proper syntax. <br> Example: alert('You are correct');
Gary Calhoun
10,317 PointsGary Calhoun
10,317 PointsHi when I test the code on codepen it works for me. Where can't you proceed from? Is this part of a challenge or something? What are you seeing any errors in the console?