1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
---
title: 산술 연산자
slug: conflicting/Web/JavaScript/Reference/Operators
tags:
- JavaScript
- Operator
- Reference
translation_of: Web/JavaScript/Reference/Operators
translation_of_original: Web/JavaScript/Reference/Operators/Arithmetic_Operators
original_slug: Web/JavaScript/Reference/Operators/Arithmetic_Operators
---
<div>{{jsSidebar("Operators")}}</div>
<p><span class="seoSummary"><strong>산술 연산자는</strong> 숫자 값(리터럴 또는 변수)을 피연산자로 받아 하나의 숫자 값을 반환합니다.</span> 표준 산술 연산자는 덧셈(+), 뺄셈(-), 곱셈(*), 나눗셈(/)입니다.</p>
<div>{{EmbedInteractiveExample("pages/js/expressions-arithmetic.html")}}</div>
<h2 id="덧셈"><a id="Addition" name="Addition">덧셈 (+)</a></h2>
<p>덧셈 연산자는 숫자 피연산자를 더한 값, 또는 문자열을 연결한 값을 생성합니다.</p>
<h3 id="구문">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> x + y
</pre>
<h3 id="예제">예제</h3>
<pre class="brush: js">// Number + Number -> 합
1 + 2 // 3
// Boolean + Number -> 합
true + 1 // 2
// Boolean + Boolean -> 합
false + false // 0
// Number + String -> 연결
5 + "foo" // "5foo"
// String + Boolean -> 연결
"foo" + false // "foofalse"
// String + String -> 연결
"foo" + "bar" // "foobar"
</pre>
<h2 id="뺄셈_-"><a id="Subtraction" name="Subtraction">뺄셈 (-)</a></h2>
<p>뺄셈 연산자는 두 개의 피연산자를 뺀 값을 생성합니다.</p>
<h3 id="구문_2">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> x - y
</pre>
<h3 id="예제_2">예제</h3>
<pre class="brush: js">5 - 3 // 2
3 - 5 // -2
"foo" - 3 // NaN</pre>
<h2 id="나눗셈"><a id="Division" name="Division">나눗셈 (/)</a></h2>
<p>나눗셈 연산자는 왼쪽 피연산자를 피제수로, 오른쪽 피연산자를 제수로 한 몫을 생성합니다.</p>
<h3 id="구문_3">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> x / y
</pre>
<h3 id="예제_3">예제</h3>
<pre class="brush: js">1 / 2 // JavaScript에선 0.5
1 / 2 // Java에선 0
// (양쪽 피연산자 모두 명시적인 부동소수점 숫자가 아님)
1.0 / 2.0 // JavaScript와 Java 둘 다 0.5
2.0 / 0 // JavaScript에서 Infinity
2.0 / 0.0 // 동일하게 Infinity
2.0 / -0.0 // JavaScript에서 -Infinity</pre>
<h2 id="곱셈_*"><a id="Multiplication" name="Multiplication">곱셈 (*)</a></h2>
<p>곱셈 연산자는 두 연산자의 곱을 생성합니다.</p>
<h3 id="구문_4">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> x * y
</pre>
<h3 id="예제_4">예제</h3>
<pre class="brush: js">2 * 2 // 4
-2 * 2 // -4
Infinity * 0 // NaN
Infinity * Infinity // Infinity
"foo" * 2 // NaN
</pre>
<h2 id="나머지"><a id="Remainder" name="Remainder">나머지 (%)</a></h2>
<p>나머지 연산자는 왼쪽 피연산자를 오른쪽 피연산자로 나눴을 때의 나머지를 반환합니다. 결과는 항상 피제수의 부호를 따라갑니다.</p>
<h3 id="구문_5">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> var1 % var2
</pre>
<h3 id="예제_5">예제</h3>
<pre class="brush: js">12 % 5 // 2
-1 % 2 // -1
NaN % 2 // NaN
1 % 2 // 1
2 % 3 // 2
-4 % 2 // -0
5.5 % 2 // 1.5
</pre>
<h2 id="거듭제곱_**"><a name="Exponentiation">거듭제곱 (**)</a></h2>
<p>거듭제곱 연산자는 첫 번째 피연산자를 밑으로, 두 번째 피연산자를 지수로 한 값을 생성합니다. 즉, <code>var1</code>과 <code>var2</code>가 변수일 때, <code>var1<sup>var2</sup></code>의 값을 생성합니다. 거듭제곱 연산자는 우결합성을 가집니다. 따라서 <code>a ** b ** c</code>는 <code>a ** (b ** c)</code>와 같습니다.</p>
<h3 id="구문_6">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> var1 ** var2
</pre>
<h3 id="참고">참고</h3>
<p>PHP와 Python 등 거듭제곱 연산자를 가진 대부분의 언어는 거듭제곱 연산자의 우선순위가 +와 - 등 단항 연산자보다 높습니다. 그러나 Bash는 단항 연산자가 거듭제곱 연산자보다 우선순위가 높은 등 일부 예외도 있습니다. JavaScript는 단항 연산자(<code>+/-/~/!/delete/void/typeof</code>)를 왼쪽 피연산자 앞에 배치할 수 없으므로, 모호한 표현도 작성할 수 없습니다.</p>
<pre class="brush: js">-2 ** 2;
// Bash에서 4, 다른 언어에서는 -4.
// 모호한 표현이므로 JavaScript에서는 유효하지 않음
-(2 ** 2);
// JavaScript에서 -4, 작성자의 의도가 명확함
</pre>
<h3 id="예제_6">예제</h3>
<pre class="brush: js">2 ** 3 // 8
3 ** 2 // 9
3 ** 2.5 // 15.588457268119896
10 ** -1 // 0.1
NaN ** 2 // NaN
2 ** 3 ** 2 // 512
2 ** (3 ** 2) // 512
(2 ** 3) ** 2 // 64
</pre>
<p>결과의 부호를 뒤집으려면 다음과 같이 작성합니다.</p>
<pre class="brush: js">-(2 ** 2) // -4
</pre>
<p>거듭제곱의 밑을 음수로 강제하려면 다음과 같이 작성합니다.</p>
<pre class="brush: js">(-2) ** 2 // 4
</pre>
<div class="note">
<p><strong>참고:</strong> JavaScript는 <a href="/ko/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators#Bitwise_XOR">비트 연산자 ^ (논리 XOR)</a>도 가지고 있습니다. <code>**</code>와 <code>^</code>는 다릅니다. (예 : <code>2 ** 3 === 8</code>이지만 <code>2 ^ 3 === 1</code>)</p>
</div>
<h2 id="증가"><a id="Increment" name="Increment">증가 (++)</a></h2>
<p>증가 연산자는 피연산자를 증가(1을 덧셈)시키고, 그 값을 반환합니다.</p>
<ul>
<li>피연산자 뒤에 붙여(예: <code>x++</code>) 접미사로 사용한 경우 증가하기 전의 값을 반환합니다.</li>
<li>피연산자 앞에 붙여(예: <code>++x</code>) 접두사로 사용한 경우 증가한 후의 값을 반환합니다.</li>
</ul>
<h3 id="구문_7">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> x++ or ++x
</pre>
<h3 id="예제_7">예제</h3>
<pre class="brush: js">// 접미사
var x = 3;
y = x++; // y = 3, x = 4
// 접두사
var a = 2;
b = ++a; // a = 3, b = 3
</pre>
<h2 id="감소_--"><a id="Decrement" name="Decrement">감소 (--)</a></h2>
<p>감소 연산자는 피연산자를 감소(1을 뺄셈)시키고, 그 값을 반환합니다.</p>
<ul>
<li>피연산자 뒤에 붙여(예: <code>x--</code>) 접미사로 사용한 경우 감소하기 전의 값을 반환합니다.</li>
<li>피연산자 앞에 붙여(예: <code>--x</code>) 접두사로 사용한 경우 감소한 후의 값을 반환합니다.</li>
</ul>
<h3 id="구문_8">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> x-- or --x
</pre>
<h3 id="예제_8">예제</h3>
<pre class="brush: js">// 접미사
var x = 3;
y = x--; // y = 3, x = 2
// 접두사
var a = 2;
b = --a; // a = 1, b = 1
</pre>
<h2 id="단항_부정_-"><a name="Unary_negation">단항 부정 (-)</a></h2>
<p>단항 부정 연산자는 피연산자의 앞에 위치하며 부호를 뒤집습니다.</p>
<h3 id="구문_9">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> -x
</pre>
<h3 id="예제_9">예제</h3>
<pre class="brush: js">var x = 3;
y = -x; // y = -3, x = 3
// 단항 부정 연산자는 숫자가 아닌 값을 숫자로 변환함
var x = "4";
y = -x; // y = -4</pre>
<h2 id="단항_양부호"><a name="Unary_plus">단항 양부호 (+)</a></h2>
<p>단항 양부호 연산자는 피연산자의 앞에 위치하며 피연산자의 값 그대로 평가되지만, 값이 숫자가 아닐 경우 숫자로 변환을 시도합니다. 단항 부정(-) 연산자도 숫자가 아닌 값을 변환할 수 있지만, 단항 양부호가 속도도 제일 빠르고 다른 연산도 수행하지 않으므로 선호해야 할 방법입니다. 문자열로 표현한 정수 및 부동소수점 실수, 문자열이 아닌 <code>true</code>, <code>false</code>, <code>null</code>도 변환할 수 있습니다. 10진수와 (앞에 "0x"가 붙은) 16진수 정수 모두 지원합니다. 음수도 지원하지만 16진수 음수에는 사용할 수 없습니다. 어떤 값을 분석할 수 없으면 {{jsxref("NaN")}}으로 평가됩니다.</p>
<h3 id="구문_10">구문</h3>
<pre class="syntaxbox"><strong>연산자:</strong> +x
</pre>
<h3 id="예제_10">예제</h3>
<pre class="brush: js">+3 // 3
+"3" // 3
+true // 1
+false // 0
+null // 0
+function(val) { return val } // NaN
</pre>
<h2 id="명세">명세</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-additive-operators', 'Additive operators')}}</td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-postfix-expressions', 'Postfix expressions')}}</td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-11.5', 'Multiplicative operators')}}</td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-11.4', 'Unary operator')}}</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("javascript.operators.arithmetic")}}</p>
<h2 id="같이_보기">같이 보기</h2>
<ul>
<li><a href="/ko/docs/Web/JavaScript/Reference/Operators/Assignment_Operators">할당 연산자</a></li>
</ul>
|