碎片時間學(xué)編程「349]:根據(jù)函數(shù)從左側(cè)刪除數(shù)組元素

刪除數(shù)組中的元素,直到傳遞的函數(shù)返回 true為值。返回數(shù)組中的剩余元素。 循環(huán)遍歷數(shù)組,使用 Array.prototype.slice() 方法刪除數(shù)組的第一個元素,直到 func 返回的值為 true。 返回剩余元素。
const dropWhile = (arr, func) => { ?while (arr.length > 0 && !func(arr[0])) arr = arr.slice(1); ?return arr;};
示例:
dropWhile([1, 2, 3, 4], n => n >= 3); // [3, 4]
更多內(nèi)容請訪問我的網(wǎng)站:https://www.icoderoad.com
標(biāo)簽: