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) Storing and Tracking Information with Variables Combining Strings

something Seems to be wrong with the text editor in this question .

https://teamtreehouse.com/library/javascript-basics/storing-and-tracking-information-with-variables/combining-strings

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!"

script.js
var firstName = 'fred';

var LastName = 'isdead';
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="script.js"></script>
</body>
</html>

hmm... i reloaded the page, got past that step now its doing it in the next step O.o.

1 Answer

Steven Parker
Steven Parker
229,608 Points

:point_right: Javascript is case sensitive.

You named your second variable LastName (capital L) but they want you to use lastName (lower case "l").

:warning: 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.

ASCII "DEL" character (code 127) what, where?