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

JavaScript의 조건부 연산자는 무엇입니까?


조건 연산자는 먼저 true 또는 false 값에 대한 표현식을 평가한 다음 평가 결과에 따라 주어진 두 명령문 중 하나를 실행합니다.

Sr.No
연산자 및 설명
1
? :(조건부)
조건이 참이면? 그런 다음 값 X:그렇지 않으면 값 Y

예시

JavaScript에서 조건 연산자가 작동하는 방식을 이해하려면 다음 코드를 시도하십시오.

실시간 데모

<html>
   <body>
      <script>
         <!--
            var a = 10;
            var b = 20;
            var linebreak = "<br />";
            document.write ("((a > b) ? 100 : 200) => ");
            result = (a > b) ? 100 : 200;
            document.write(result);
            document.write(linebreak);
            document.write ("((a < b) ? 100 : 200) => ");
            result = (a < b) ? 100 : 200;
            document.write(result);
            document.write(linebreak);
         //-->
      </script>
      <p>Set the variables to different values and different operators and then try...</p>
   </body>
</html>