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 trialJahid Hasan
6,786 PointsWhat is this question asking for?
what is the problem with the code?
var firstName = "Barney ";
var lastName = "Stinson";
var fullName = firstName + secondName;
<!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
Jahid Hasan
6,786 PointsI used 'secondName' instead of 'lastName' in the last line of coding. and I used space " " in the first variable value.
Shayne Laufenberg
4,213 PointsYou've added a space to your first name instead of adding a space inside fullName variable. Also you are using the variable secondName instead of lastName. The Solution should look something like this..
Solution:
// Shayne Laufenberg //
// Javascript Basics - Combining Strings //
// Declare first name //
var firstName = "Shayne";
// Declare Last Name //
var lastName = "Laufenberg";
// Declare Full Name //
var fullName = firstName + " " + lastName;
Jahid Hasan
6,786 PointsThank you for helping...
Shayne Laufenberg
4,213 PointsShayne Laufenberg
4,213 PointsThis may be the case but i would highly advice not to add spaces in variables unless justified. Glad you ended up figuring it out though :)