js构造函数内存在的闭包
摘要:function Func(x) { this.x = x; this.print=function() { console.info(this.x); (function (){ console.info(x); })(); }}var a = new Func(30);console.dir(a
阅读全文
posted @ 2019-01-13 11:52
posted @ 2019-01-13 11:52