Array.prototype.find=function(callback){. for(var i=0;i<this.length;i++){ if(callback(this[i])){ return this[i]; } } return null;. }
確定! 回上一頁