Thursday 7/17/2008. 30 points.
http://www.cs.nyu.edu/courses/summer08/G22.3033-002/
These are example solutions. Please keep in mind that often, there is not just one correct solution to a question. If you come up with different answers, then it may be that both your answers and these answers here are correct. Of course, these answers here may also contain mistakes. If you spot a mistake, please let me know so I can correct it.
a=1, b=2
a=3, b=2
inner
outer(2), with the binding
b=2. Since the call object refers to the same global object both
during and after the call, the binding for a changes from
a=1 to a=3.