Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Andrea Scianna
11,928 PointsThe Global var "value" is passed and modified (!) by the functions call. But it's declared as a const !
How it's possible ?
3 Answers

Steven Parker
220,634 PointsThe original "value" is not modified, but a new value is computed using it which is then returned. The new value eventually gets passed down to "finalValue" where it is logged, but it is never stored back into "value".

MSM KSD14
269 PointsThis is very very interesting. So does that mean the resolve method have a closure in the global variable environment?

Steven Parker
220,634 PointsThis is an example of simple argument passing and is not related to closures.

MSM KSD14
269 PointsOh i see, let me rewatch it again