JavaScript/ECMAScript Closures Up Close and Personal
Monday, July 19th, 2010One of the most important tricks an ECMAScript coder can learn is how to properly create ‘object’ with prototypes. A second-place runner up is the use of closures. Closures come from JavaScript’s secret roots in Scheme. They’re a technique for letting scope ‘linger’ around for functions that are called within a function. I looked for [...]
