关于js的闭包概念,简单说就是读取其他函数内部变量
来看一段代码:
function a(){ var n = 0; this.me= function () { n++; console.log(n); }; } var c = new a(); c.me(); c.me();