arr.forEach(function(element,index){
console.log(element + '/' + index);
})
遍历数组
最新推荐文章于 2024-10-04 21:37:59 发布
arr.forEach(function(element,index){
console.log(element + '/' + index);
})