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 trialZehad Moses
1,517 PointsI don't know what I am doing incorrectly. the function works, but asks if I have added "true" to { }
I don't know what I am doing incorrectly.
the function works, but asks if I have added "true" to { }
var correctGuess = false;
var randomNumber = Math.floor(Math.random() * 6 ) + 1;
var guess = prompt('I am thinking of a number between 1 and 6. What is it?');
if (parseInt(guess) === randomNumber ) {
correctGuess = true;
alert('This is true');
} else {
alert("This is false, it ia actually "+ randomNumber);
}
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
2 Answers
Sara Chicazul
7,475 PointsIf this is for the "Booleans" challenge, the problem is likely that you've added too much code. It's best to add just what the problem asks for so you don't confuse the error checker.
Another problem I notice is that the problem asks you to add a boolean to the condition of the if statement. Your code in plain text above does this, but in the code block below (which looks like the actual code being error-checked) you only have one if statement, and the condition does not contain a boolean.
Zehad Moses
1,517 PointsThank you Sara, you we're right!
I simplified the code and it accepted the "true" boolean.
:)
Sara Chicazul
7,475 PointsGlad you got it figured out! (: