Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 세미콜론이 잘못 배치되면 어떻게 됩니까?

<시간/>

JavaScript에서 세미콜론이 잘못 배치되면 잘못된 결과를 초래할 수 있습니다. if 문 조건이 거짓이지만 세미콜론의 위치가 잘못되어 값이 출력되는 예를 살펴보겠습니다.

예시

<!DOCTYPE html>
<html>
   <body>
      <script>
         var val1 = 10;

         if (val1 == 15) {
            document.write("Prints due to misplaced semi-colon: "+val1);
         }
         var val2 = 10;

         if (val2 == 15) {
            // this won't get printed
            document.write(val2);
         }
      </script>
   </body>
</html>