Eggs Sunny Side Up
본문 바로가기
Web/JavaScript

반복문

by guswn100059 2023. 4. 17.
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        // 반복문
        // 1. while
        // : 반복횟수가 명확하지 않을 때
        // while(조건식) {
        //     반복할 구문
        // }

        // 2. do-while
        // do {
        //     반복할 구문
        // }while(조건식)

        // 3. for
        // : 반복횟수가 명확할 때 많이 사용
        // 1~5까지 콘솔창에 출력하는 코드를 작성
        // for문의 초기화구문을 작성할 때는 int가 아닌 var/let을 사용!!
        // for(let i=1; i<6; i++) {
        //     console.log(i);
        // }

    </script>
</body>
</html>

'Web > JavaScript' 카테고리의 다른 글

배열  (0) 2023.04.17
랜덤수  (0) 2023.04.17
조건문  (0) 2023.04.17
연산자  (0) 2023.04.14
형변환  (0) 2023.04.14

댓글