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 trialJAAFAR CHRAIBI
1,839 PointsWhat happens if i add a new "var" each time i want to change the value of the variable ?
?
4 Answers
Steven Parker
231,236 PointsA variable should only be declared once. If you use the keyword "var" on the same variable a second time, it is not proper programming. But duplicate variable declarations using "var" will not trigger an error, so you can "get away with it".
However, if you use the newer "let" keyword instead, it will cause an error.
Dinesh P
415 PointsIt won't result in an error. But using var every time is just an extra work 😄
ATIF IBAD KHAN
11,048 PointsUsing "var" for declaring variable again and again will not result in error, but note it will increase the size of javascript file.
Example:(Tested on windows 10):
var superhero = "Spider-Man"; superhero = "Venom"; The above content resulted in file-size of 51 bytes.
var superhero = "Spider-Man"; var superhero = "Venom"; The above content resulted in file-size of 55 bytes.
Extra 4 bytes will not cause much of issue, but if you adapt this practice and write large js files, then there will be a significant difference in file-size.
Muhammad Khan
Courses Plus Student 8,772 PointsIn programing, it is not recommended to declare the same variable every time using 'var'. However, it does not give any error if you use 'var' again for the same variable but it's not a good practice.