标签:nbsp console pre style var prot http 问题 prototype
参考:http://www.cftea.com/c/2014/08/6290.asp
作者:vkvi
如题我看到也有点诧异,测试了真的有这个问题,上代码
1 Array.prototype.a = function(){}; 2 var arr = [1,2]; 3 for(var key in arr){console.log(key)} //0,1,a
会把原形上的原形的也遍历出来
Array.prototype.a = function(){};
var arr = [1,2];
for(var key in arr){console.log(key)} //0,1,a
标签:nbsp console pre style var prot http 问题 prototype
原文地址:http://www.cnblogs.com/me2o/p/7944914.html