비교
-
[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..
-
[PHP] 8. 연산자 (Operators) - PHP 강좌, PHP5Web/PHP 2015. 6. 13. 13:42
PHP 5 Operators 1. PHP Operators 연산자(Operator)는 변수와 값을 연산을 수행하기 위해 사용됩니다. 2. PHP Arithmetic Operators PHP 산술(Arithmetic) 연산자는 숫자 값을 일반적인 산술 연산을 하기 위해 사용됩니다. OperatorNameExampleResultShow it+Addition$x + $ySum of $x and $yShow it ≫-Subtraction$x - $yDifference of $x and $yShow it ≫*Multiplication$x * $yProduct of $x and $yShow it ≫/Division$x / $yQuotient of $x and $yShow it ≫%Modulus$x % $yRemai..