这是我写的,要实现的就是对数组中的非稀疏元素进行操作Array.prototype.foreach=function(callback){vara=this;for(vari=0;iif(!(iina))continue; callback(a[i],i,a);}}这是ES5源码//ProductionstepsofECMA-262,Edition5,15.4.4.18//Reference:http://es5.github.io/#x15.4.4.18Array.prototype.forEach=function(callback,thisArg){varT,k;if(this==null){//难道Array可能为null??什么情况下?thrownewTypeError('thisisnullornotdefined');}varO=Object(this);//这有什么用?varlen=O.length>>>0;//这有什么用?if(typeofcallback!=="function"){thrownewTypeError(callback+'isnotafunction');}if(arguments.length>1){T=thisArg;//thisArg有什么用?}k=0;while(kvarkValue; if(kinO){kValue=O[k];callback.call(T,kValue,k,O);}k++;}};问题已写在注释中,求指导。关于第三个问:length>>>0,提供一个参考链接
慕村225694
相关分类