티스토리 뷰

{
    let num = 1;

    while(num<=100) {
        console.log(num); 
        num++;                             
    };
}

결과보기

:1부터 100까지 출력됨

댓글
© 2018 webstoryboy