小熊猫2019  

2023年4月4日

摘要: let index = 0;while (++index < 1000) { // do something }这段代码 等价于 let index = 0; while(index < 1000){ // do something index++; } 阅读全文
posted @ 2023-04-04 13:55 小熊猫2019 阅读(13) 评论(0) 推荐(0)