ES5 04 Array擴展

  1. Array.prototype.indexOf(value) : 獲得值在數組中的第一個下標
  2. Array.prototype.lastIndexOf(value) : 獲得值在數組中的最後一個下標
  3. Array.prototype.forEach(function(item, index){}) : 遍歷數組
  4. Array.prototype.map(function(item, index){}) : 遍歷數組返回一個新的數組,返回加工以後的值
  5. Array.prototype.filter(function(item, index){}) : 遍歷過濾出一個新的子數組, 返回條件爲true的值

相關文章
相關標籤/搜索