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 trialsurprisemaimane
5,414 PointsJavascript basics challenge wont take the correct answer when addingg answer.toUpperCase() on the answer field e
when adding:
var answer = prompt("What is your best pogramming language?"); the answer is accepted but when I add the conditional:
if(answer.toUpperCase() === 'JAVASCRIPT'){ alert("You are correct"); } Responshse I get is "It looks like Task 1 is no longer ....." Please help
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>
1 Answer
Christopher Misa
6,467 PointsThe challenge is not worried about checking the case of the response, just matching the string "JavaScript."
Try if(answer === 'JavaScript') ...
surprisemaimane
5,414 Pointssurprisemaimane
5,414 PointsThanks that worked.. was concerned about case sensitivity iniially