논리
-
[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..