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 trialNik Oaks
8,056 PointsDo you need to declare a separate variable when using parse
Instead of making a whole new variable to represent a number value is it common to just reassign the original prompt and change it from a constant to a variable. I've been noticing this in other people code, I typically try to reassign instead of having too many variables in the code.
1 Answer
Steven Parker
231,236 PointsSometimes being conservative with variables can be a tradeoff with maintainability. You'll make a judgement for each situation.
This won't be as much of a concern when you start using functions, since variables created in a function get automatically reclaimed when the function ends.