할당
-
[javascript] 8. 연산자(Operators) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:26
JavaScript Operators 값을 변수에 할당하고 그 값들을 더하는 예제입니다. 123var x = 5; // assign the value 5 to xvar y = 2; // assign the value 2 to yvar z = x + y; // assign the value 7 to z (x + y)cs 1. JavaScript Arithmetic Operators산술 연산자는 변수와 값 사이의 산술 연산을 수행하기 위해 사용됩니다. OperatorDescription+Addition-Subtraction*Multiplication/Division%Modulus++Increment--Decrement[ 출처: W3Schools] 2. JavaScript Assignment Operators..
-
[javascript] 4. 문법(Syntax) - 자바스크립트 강좌Web/JavaScript 2015. 6. 13. 14:24
자바스크립트 문법은 어떻게 자바스크립트가 구성되는지에 대한 규칙입니다. - 컴퓨터 프로그램은 컴퓨터에 의해 실행되는 명령들의 집합입니다. - 프로그래밍 언어에서, 이러한 프로그램 명령들을 statement라 합니다. - 자바스크립트는 프로그래밍 언어(Programming language)입니다. - 자바스크립트 statements는 세미콜론(;)으로 구분됩니다. 예제. 1234567891011121314151617181920212223 JavaScript Statements Statements are separated by semicolons. The variables x, y, and z are assigned the values 5, 6, and 11: var x = 5;var y = 6;var z ..
-
[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..