2 Star 0 Fork 0

Weldon0/hrsaas-27

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
myForeach.html 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
Weldon 提交于 2022-05-02 15:01 . 员工详情界面结构搭建
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
const arr = ['a', 'b', 'c']
const arr1= []
Array.prototype.myForEach = function (fn) {
console.log(this)
// 内部调用fn的时候,需要传递的第一个参数就是数组成员
// 遍历数组,把数组成员通过调用fn传递出去
// this 谁调用就是谁
for (let i = 0; i < this.length; i ++) {
// 拿到数组成员
// this[i]
fn(this[i], i, this)
}
}
Array.prototype.myMap = function (fn) {
const arr = []
// 内部调用fn的时候,需要传递的第一个参数就是数组成员
// 遍历数组,把数组成员通过调用fn传递出去
// this 谁调用就是谁
for (let i = 0; i < this.length; i ++) {
// 拿到数组成员
// this[i]
const res = fn(this[i], i, this)
arr.push(res)
}
return arr
}
console.log(arr)
const res = arr.map((item, index, arr) => {
// return item + '黑马'
})
console.log(res)
// console.log(res) // []
//
// arr.forEach((item, index, arr) => {
// console.log(item)
// console.log(index)
// console.log(arr)
// })
//
//
// arr.myForEach((item, index, arr) => {
// // 数组的每一个成员
// console.log(item)
// })
//
// arr1.forEach()
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/weldon/hrsaas-27.git
git@gitee.com:weldon/hrsaas-27.git
weldon
hrsaas-27
hrsaas-27
master

搜索帮助