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 trialFlorios Demosten
1,617 Pointsglobal vs use ()
Can some one explain why you would use use() over global?
manav
5,466 Pointsmanav
5,466 PointsIn closure construct, 'use' keyword takes the current value of variable which is at the time of function definition. Even if this variable's value changes before the closure call, it still maintains the old value. Whereas, with 'global' keyword, function gets the latest value of variable.