💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] >[success] # 数组的forEach()方法 ~~~ 'forEach()就是让数组中的每一项做一件事' ~~~ ~~~ forEach(item,index,arr,thisArg) forEach总共有4个参数 item // 数组中的每一个值(必填) index // 数组中的每一个值得索引值 arr // 当前循环的数组 thisArg // 暂时不知道是干嘛的 ~~~ <br/> >[success] ## 使用方法 ~~~ var arr = [1, 2, 3, 4, 5] arr.forEach((item,index) => { console.log(item) }) // 1 // 2 // 3 // 4 // 5 ~~~ ~~~ 注意: forEach()方法不能return和break ~~~