27.10.14

Javascript闭包


书中定义:
  • P180
  • This combination of a function object and a scope (a set of variable bindings) in which the function's variables are resolved is called a closure in the computer science literature.
    • This is an old term that refers to the fact the function's variables have bindings in the scope chain and that therefore the function is "closed over" its variables.

19.10.14

手把手教你开发chrome扩展


  • http://www.cnblogs.com/walkingp/archive/2011/03/31/2001628.html
  • Getting Started - From Official Website