摘要: for文for (let i = 0; i < 7; i++) { console.log(i);} for...of文const array1 = ['a', 'b', 'c']; for (const element of array1) { console.log(element);} for 阅读全文
posted @ 2023-07-26 17:03 飘雪飞阳 阅读(14) 评论(0) 推荐(0)