Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
jQuery Events - 16
Sep 03, 2012 at 2:33 PMThere's some subtlety as to why the score variable can retain its value between clicks. I understand it because of my experience with C#, lambda expressions, and closures, but it might not be so obvious to the beginning programmer.
Understanding Function versus Global Scope - 10
Sep 02, 2012 at 8:16 PMI would have expected in the 2nd alert box to see that myScope was changed to "changed", but it remains "global".
myScope = "global"; (function () { myScope = "changed"; var myScope = "function"; alert('inside the function, the scope is: ' + myScope); })(); alert('outside the function, the scope is: ' + myScope);Writing JavaScript in Visual Web Developer Express Edition - 04
Sep 02, 2012 at 5:16 PMI was a little surprised at first that breakpoints in the script weren't honored when I hit F5 in the dev environment. After thinking about it, I suspect that VS is debugging the server side and not the client side.