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

cannot 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') }

app.js
var answer = prompt('What is the best programming language');
if (answer.toUpperCase() === '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>

Hi 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?

It is correct code, problem is OP is doing more than the challenge asked for.

2 Answers

They 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.

Yes correct ! ? and the toUpperCase was causing the problem. Thanks.

You are welcome!

The code runs properly for me. But I recommend put a ; (semicolon) after the alert() method for proper syntax. <br> Example: alert('You are correct');