JS 循环的两种方式

// 1、for循环
for (var i = 0; i <= 10; ++ i) {
    console.log(i);
}

// 2、while循环
var i = 0;
while (i <= 10) {
    console.log(i);
    ++ i;
}
posted @ 2019-12-19 10:45  GetcharZp  阅读(228)  评论(0编辑  收藏  举报