您好,登錄后才能下訂單哦!
今天小編給大家分享一下JavaScript數組中迭代方法怎么實現的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
如果你還不知道數組實例中迭代方法有什么區別,可以看下面這張圖:
這個方法會返回一個新的數組,數組中的每一項都是執行過map
提供的回調函數結果。
實現代碼如下:
const map = (array, fun) => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function') // 定義一個空數組,用于存放修改后的數據 let res = [] for (let i = 0; i < array.length; i++) { res.push(fun(array[i])) } return res } // 測試 let res = map([1, 2, 3], item => { return item * 2 }) console.log(res) // [ 2, 4, 6 ]
這個方法會返回一個新的數組,數組中的值是滿足filter
提供的回調函數的值,
實現代碼如下:
const filter = (array, fun) => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function') // 定義一個空數組,用于存放符合條件的數組項 let res = [] for (let i = 0; i < array.length; i++) { // 將數組中的每一項都調用傳入的函數,如果返回結果為true,則將結果push進數組,最后返回 fun(array[i]) && res.push(array[i]) } return res } // 測試 let res = filter([1, 2, 3], item => { return item > 2 }) console.log(res) // [ 3 ]
該方法會判斷數組中的每一項,如果有一項滿足回調函數中條件就返回true
都不滿足則返回false
。
實現代碼如下:
const some = (array, fun) => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function') let flag = false for (let i of array) { if (fun(i)) { flag = true break } } return flag } let res = some([1, 2, 3], item => { return item > 2 }) console.log(res) // true
該方法會判斷數組中的每一項,如果所有項滿足回調函數中條件就返回true
否則返回false
。
實現代碼如下:
const every = (array, fun) => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function') let flag = true for (let i of array) { if (!fun(i)) { flag = false break } } return flag } let res = every([1, 2, 3], item => { return item > 0 }) console.log(res) // true
該方法會讓數組中的每個元素執行我們提供的回調函數,并將結果匯總返回,實現代碼如下:
const reduce = (array, fun, initialValue) => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function') let accumulator = initialValue for (let i = 0; i < array.length; i++) { accumulator = fun(accumulator, array[i], i, array) } return accumulator } const arr = [1, 2, 3] console.log(arr.reduce(v => v + 10, 10)) // 40 console.log(reduce(arr, v => v + 10, 10)) // 40
這個方法比較簡答了,就是遍歷數組方法,數組中的每一項都執行回調函數,實現代碼如下:
const forEach = (array, fun) => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function') for (let i of array) { fun(i) } } let res = forEach([1, 2, 3], item => { console.log(item) })
這兩個方法比較類似,一個返回元素,一個返回元素的索引,這里就編寫一個,實現代碼如下:
const myFind = (array, fun) => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof fun !== 'function') throw new TypeError(fun + ' is not a function') let res for (let i = 0; i < array.length; i++) { if (fun(array[i])) { res = array[i] } } return res } // 測試 let res = myFind([1, 2, 3], item => { return item > 2 }) console.log(res) // 3
該方法可以將數組中的所有元素根據指定的字符串進行拼接,并返回拼接后的字符串,
實現代碼如下:
const join = (array, separator = ',') => { // 類型約束 if (Object.prototype.toString.call(array) !== '[object Array]') throw new TypeError(array + ' is not a array') if (typeof separator !== 'string') throw new TypeError(separator + ' is not a string') let res = array[0].toString() for (let i = 0; i < array.length - 1; i++) { res += separator + array[i + 1].toString() } return res } // 測試 let res = join([1, 2, 3], '-') console.log(res) // 1-2-3
以上就是“JavaScript數組中迭代方法怎么實現”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。