거짓
-
[javascript] 24. 비교(Comparisons) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:16
JavaScript Comparison and Logical Operators 1. Comparison Operators 비교 연산자는 동일성을 결정짓는 논리 식에 쓰이거나 변수나 값 사이에서 다름을 측정하는데 사용합니다. x = 5 일때, 아래 테이블을 통해 비교 할 수 있습니다. OperatorDescriptionComparingReturnsTry it==equal tox == 8falseTry it ≫x == 5trueTry it ≫===equal value and equal typex === "5"falseTry it ≫x === 5trueTry it ≫!=not equalx != 8trueTry it ≫!==not equal value or not equal typex !== "5"trueTry..
-
[javascript] 23. 논리연산(Booleans) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:42
JavaScript Booleans 1. The Boolean() Function Boolean() 메소드를 이용하여 계산 식이 참인지 거짓 인지를 판별 할 수 있습니다. 1Boolean(10 > 9) // returns truecs 또한, 더 쉽게 아래와 같이 사용 할 수 있습니다. 12(10 > 9) // also returns true10 > 9 // also returns truecs 2. Comparisons and Conditions OperatorDescriptionExample==equal toif (day == "Monday")>greater thanif (salary > 9000)