JS數組Array的所有方法彙總

//constructor屬性 var arr = []; arr.constructor === Array //true //prototype屬性 Array.prototype.max = function(){ var max = this[0]; for(var i = 1; i < this.length; i++){ if(this[i] > max){ max
相關文章
相關標籤/搜索