一、ForEach()forEach()方法对数组的每个元素执行一次给定的函数。实例代码:
const array1 = ['a', 'b', 'c', 'd']
array1.forEach((item) => {
console.
2022-04-30