arr.forEach(function(element,index){
console.log(element + '/' + index);
})
遍历数组
最新推荐文章于 2025-05-16 10:45:11 发布
arr.forEach(function(element,index){
console.log(element + '/' + index);
})