JS中几种包含for的遍历方式数组的常用遍历方法常用有:for、map、forEachlet arr = [1,2,3,4,5]arr.forEach((i)=>{ console.log(i)1 2 3 4 5})}let arr =2023-03-05JavaScript250