企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### 1. for循环 ~~~ for(let i=0;i<arr.length;i++){ console.log(arr[i]) ~~~ ### 2. for in (在vue中可以遍历对象) ~~~ for(let k in arr){ console.log(arr[k]); } ~~~ ### 3. for of ~~~ for(let k of arr){ console.log(k); ~~~ ### 4. forEach() ~~~ arr.forEach((v,k)=>{ console.log(v); console.log(k); }) ~~~ ### 5. map((value,index) ~~~ <script> var arr = [1,2,3,4]; // Array.from(arr,(value,index)=>{ // console.log(index); // }); arr.map((value,index)=>{ console.log(index) }) </script> ~~~ ### 6. ~~~ ~~~