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 trialJAWAD WAHEDI
476 Pointscould you please help me out with this?
i got confused!!!
var firstName = "Jawad";
var lastName = "Wahedi";
var fullName = "message";
message += "Jawad Wahedi";
<!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
Mike Schaming
13,925 PointsHi Jawad! You are on the right track! Your first two steps are spot on: var firstName = "Jawad"; var lastName = "Wahedi";
Once we get to task 3, it's asking us to combine the info stored in the first two variables into a new variable. To combine, we just need to use the "+"
ex. var example = variable1 + variable2;
Hope this helps!
JAWAD WAHEDI
476 Pointsthank you it really helped me to understand. Regards
JAWAD WAHEDI
476 PointsJAWAD WAHEDI
476 PointsHi Mike Thank you for the answer. actually i tried this: var firstName = "jawad"; var lastName = "Jawad"; var fullName = "hello"; fullName += "Jawad Wahedi";
and it worked but honestly i didnt get it, how it worked?
Mike Schaming
13,925 PointsMike Schaming
13,925 PointsHi Jawad,
Yes! It looks like that will work as well. Here's why I think it works too
You created a 3rd variable, var fullName = "hello".
Currently, the only thing stored in this variable is the string "hello
then, you use "+=" which takes whatever is currently stored in fullName, in this case 'hello", and adds the string 'Jawad Wahedi'.
now, fullName should have this: "hello Jawad Wahedi".
This gives us a similar result of : var fullName = firstName + lastName; In this case, we are just adding together whatever strings are stored in firstName and lastName, which are just "Jawad" & "Wahedi".
At least that is what I think is happening. Hope this helped and hasn't added to any confusion. Looks like two different approaches for a similar result.
All the best!