continue 키워드 활용

imjingu·2023년 7월 18일
0

개발공부

목록 보기
138/481

continue 키워드 활용
코드의 가독성을 위해, 다른 코드로 대체 가능한 경우 사용하지 않는게 좋음

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        
        let output = 0;
        // 1 부터 10까지의 짝수의 합을 구함. 반복횟수가 10번
        for (let i = 1; i <= 10; i++ ) {
            if (i % 2 === 1) { // 조건부
                //홀수면 현재 반복을 중지하고 다음 반복을 수행
            //     continue; 없애도 실행 되는건 똑같음
            // }
                output += i;
            }
        }
        //출력합니다
        alert(output);


        // 두번째 방법
        output = 0;

        // 1부터 10까지의 짝수의 합을 구함 , 반복횟수가 5번
        for (let i = 2; i <= 10; i +=2) { //i 가 2씩 증가
            output += i;
        }
        alert(output);
    </script>
</body>
</html>

0개의 댓글