문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
wiki:javascript:javascript_note:js_operators [2021/04/20 19:26] emblim98 |
wiki:javascript:javascript_note:js_operators [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 48: | 줄 48: | ||
\\ | \\ | ||
- | ^ Operator | + | ^ Operator |
- | | + | + | | %%+%% | adddtion(더하기) |
- | | - | + | | %%-%% | subtraction(빼기) |
- | | * | + | | %%*%% | Multiplication(곱하기) |
- | | ** | Exponentiation (거듭제곱) | + | | %%**%% |
- | | / | + | | %%/%% | Division(나누기) |
- | | % | + | | % |
- | | ++ | Increment | + | | %%++%% |
- | | -- | Decrement (감소) | + | | %%--%% |
- | \\ | + | |
- | =====JavaScript Assignment Operators===== | + | =====JavaScript Assignment Operators===== |
- | 할당 연산자(또는 대입 연산자)는 %%JavaScript%% 변수에 값을 할당합니다.\\ | + | 할당 연산자(Assignment operators)는 %%JavaScript%% 변수에 값을 할당합니다.\\ |
\\ | \\ | ||
- | + | ||
- | | Operator | + | | Operator |
- | | = | + | | %%=%% | %%x = y%% | %%x = y%% | |
- | | += | x += y | x = x + y | + | | %%+=%% |
- | | -= | x -= y | + | | %%-=%% |
- | | *= | x *= y | x = x * y | + | | %%*=%% |
- | | /= | x /= y | x = x / y | + | | %%/=%% |
- | | %= | x %= y | x = x % y | + | | %%%=%% |
- | | **= | + | | %%**=%% | %%x ** = y%% |
\\ | \\ | ||
줄 125: | 줄 125: | ||
논리 연산자(Logical Operators)\\ | 논리 연산자(Logical Operators)\\ | ||
\\ | \\ | ||
- | ^ Operator | + | ^ Operator |
- | | && | + | | && |
- | | | + | | %%||%% |
- | | ! | logical not | + | | ! | logical not | |
\\ | \\ | ||
=====JavaScript Type Operators===== | =====JavaScript Type Operators===== |