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 trialArun B.S
6,239 PointsVariable name with space is it valid ?
what about a variable name with space like var your name = "arun" ; is it valid ?
3 Answers
Jenny Shi
10,015 PointsNo, JavaScript (and most other programming languages) does not allow variable names with spaces. For your example, it will read the variable name as "your", and then throw an error at "name" because it does not recognize that as valid syntax. Instead, you could do var yourName = "arun"
or var your_name = "arun"
. Hope this helped! :)
Chris Shaw
26,676 PointsHi Arun,
Spaces can't exist in variable names as the syntax is invalid, you can use either an underscore or camel casing instead like in the below example.
var your_name = '';
var yourName = '';
Arun B.S
6,239 PointsThanks Chris
Thomas K
11,565 PointsIf you did
var = "Your Name";
Arun B.S
6,239 Pointswhat about variable name like var your name = "arun"
Arun B.S
6,239 PointsArun B.S
6,239 PointsThank you Jenny