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 trialOsama Basha
185 PointsDon't really get this please help Answer this if you can :(
I cant do this!!!
let language;("A Dance with Dragons")
2 Answers
Meek D
3,457 PointsWhat are you trying to do ?
if you are assigning a value to a variable either you use var or let. And also when you declare let it is a constant which means you cannot change the value assign whenever you want. Hope that helps
var my_name = "Meek "
let my_name = " Meek "
Riley Spencer
1,753 PointsYou've made a simple mistake here! In-between the word language and the bracket, you've put a semi-colon (;) instead of an equal sign. Make sure there are spaces next to it as well, other wise it might think the the whole code is the same word!