Ai
1 Star 0 Fork 0

apaks/javascript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
reduce.js 332 Bytes
一键复制 编辑 原始数据 按行查看 历史
apaks 提交于 2021-05-12 16:02 +08:00 . first commit
const testArr = [1,2,3,4]
Array.prototype.reduceForEach = function (callback) {
this.reduce((acc, cur, index, array) => {
console.log('acc,cur,index,array :>> ', acc,cur,index,array);
callback(cur, index, array)
}, [])
}
testArr.reduceForEach((item, index, array) => {
console.log('item,index :>> ', item,index);
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/apaks/javascript.git
git@gitee.com:apaks/javascript.git
apaks
javascript
javascript
master

搜索帮助