復制代碼 代碼如下:
var test=(function() { var arr2=[1,2,3,3]; return function(){ return arr2; }; })()
Array.prototype.f1= function () { return []; }
Array.prototype.f2= function () { this.length=0; return this; }
然後用兩種方式調用:
一:var arr= test();
console.log(arr.length);結果是4
arr.f1();
arr= test();
console.log(arr.length);結果是4
這個好理解;
二:var arr= test();
console.log(arr.length);結果是4
arr.f2();
arr= test();
console.log(arr.length);結果是0
不知道為什麼會這樣,難道arr.f2()可以修改test函數中閉包中的arr2;