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 trialandrew valentine
1,334 Pointssomething Seems to be wrong with the text editor in this question .
i'm supposed to create two variables and assign my first and last name to them. I'm getting an error where the first task is no longer passing. i'm not sure what i'm doing wrong. can anyone check out the editor , maybe its internal?
task one ; var firstName = 'fred'; task two ; var lastName /LastName = 'isdead'; I'm getting an "Oops! it looks like Task 1 is no longer passing!"
var firstName = 'fred';
var LastName = 'isdead';
<!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>
1 Answer
Steven Parker
231,236 PointsJavascript is case sensitive.
You named your second variable LastName (capital L) but they want you to use lastName (lower case "l").
Warning: Your second line above contains an invisible ASCII "DEL" character (code 127). One of those on the line will also mess up the challenge.
andrew valentine
1,334 PointsASCII "DEL" character (code 127) what, where?
andrew valentine
1,334 Pointsandrew valentine
1,334 Pointshmm... i reloaded the page, got past that step now its doing it in the next step O.o.