Tag: mvc frameworks

  • JavaScript Closures 101: What is a closure?

    A JavaScript closure is a function that has a pointer reference to a free variable. A free variable is one that has fallen out of scope after its parent function has returned. However, if that outer function still has some reference to the free var (normally through a function that gets returned, or through a…