Closures
- Sometimes a function you create at runtime has to remember something from its time of creation that will be gone by the time of execution
- Javascript is lexically scoped
- each pair of braces {} defines a block
- code in a block has access to the local variables defined in that block
- …and the block that contains it, and that one's container, etc.
- Functions defined inside a block can access that block's local variables
- even after the defining execution leaves the block.
- invoking the function re-enters the block scope