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

question 1 is no longer passing

its a javascript question and it would be nice if i can get some help im pretty new to this

script.js
var firstName = "Hassan";
var lastName = "Tijani";
var fullName = firstName + LastName;
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>

1 Answer

shashi7
shashi7
11,034 Points

Task 3 is asking us to "Create a variable named fullName that combines both the first and last name variables to create a string like "Mary Jones"."

So, you should add a SPACE string in between first and last name variables to pass the challenge.

var fullName = firstName + " " + lastName;

Also, log the full name in developer console to check the result.

Also, remove the initial capitalisation on LastName. The variable is called lastName.

This worked! Thanks a lot!!