Ampersandre
Member since May 6, 2010
- Profile: /members/5978-ampersandre.htm
- Comments: 1
Recent Blog Comments By Ampersandre
-
Javascript Function() Constructor Does Not Create A Closure
Posted on May 6, 2010 at 3:56 AM
Your function creation still creates a closure. Right before the call to testScope(), assign a different value to the scope variable. It will still print "window" to the console. The problem is just that the creation of the new Function uses the global variable instead of the local variable. I'm no... read more »