type
status
date
slug
summary
tags
category
icon
password
URL
Sep 1, 2022 09:23 AM
一个被当做参数的函数,可以将自定义模块传进去
- forEach
- 对数组的所有元素执行相同的操作,
- 参数:回调函数
- 回调函数参数:回调函数(element,index,array)
- filter
- 按条件过滤元素元素
- 参数:回调函数
- 回调函数参数:回调函数(element,index,array)
- map
- 和forEach功能一样,多了一个返回值
- 参数:回调函数
- 回调函数参数:回调函数(element,index,array)