删除数组中的元素,直到传递的函数返回 true
。 返回数组中的其余元素。
循环访问数组,使用 Array.slice()
在数组中从第一个元素开始删除,直到函数的返回值为 true
。 返回其余的元素。
const dropElements = (arr, func) => { while (arr.length > 0 && !func(arr[0])) arr = arr.slice(1); return arr; };
dropElements([1, 2, 3, 4], n => n >= 3); // [3,4]
更多代码 JavaScript 实用代码片段 请查看 https://www.html.cn/30-seconds-of-code/
最新评论
写的挺好的
有没有兴趣翻译 impatient js? https://exploringjs.com/impatient-js/index.html
Flexbox playground is so great!
感谢总结。
awesome!
这个好像很早就看到类似的文章了
比其他的教程好太多了
柯理化讲的好模糊…没懂