ES5 04 Array擴展
- Array.prototype.indexOf(value) : 獲得值在數組中的第一個下標
- Array.prototype.lastIndexOf(value) : 獲得值在數組中的最後一個下標
- Array.prototype.forEach(function(item, index){}) : 遍歷數組
- Array.prototype.map(function(item, index){}) : 遍歷數組返回一個新的數組,返回加工以後的值
- Array.prototype.filter(function(item, index){}) : 遍歷過濾出一個新的子數組, 返回條件爲true的值
歡迎關注本站公眾號,獲取更多信息