diff options
author | alattalatta <urty5656@gmail.com> | 2021-07-15 14:44:07 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-15 14:44:07 +0900 |
commit | 187d4eb1e4784a944d28e22371ea08f39b538b27 (patch) | |
tree | 3d1e5e6469b9c8a8222c6d83d637fec8560f4f39 /files/ko/web/javascript/reference/operators/index.html | |
parent | de8eddb11dd3ef1861950e712d7811723b8b95b1 (diff) | |
download | translated-content-187d4eb1e4784a944d28e22371ea08f39b538b27.tar.gz translated-content-187d4eb1e4784a944d28e22371ea08f39b538b27.tar.bz2 translated-content-187d4eb1e4784a944d28e22371ea08f39b538b27.zip |
Add/update arithmetic operators (#1329)
* Update addition operator
* Add subtraction operator
* Add division operator
* Add multiplication operator
* Update remainder operator
* Add exponentiation operator
* Update operator names
* Update link to bitwise XOR operator
* Translate "Operator:" of syntax boxes
* Sync with English
Diffstat (limited to 'files/ko/web/javascript/reference/operators/index.html')
-rw-r--r-- | files/ko/web/javascript/reference/operators/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/files/ko/web/javascript/reference/operators/index.html b/files/ko/web/javascript/reference/operators/index.html index 9605b84278..1ddd778228 100644 --- a/files/ko/web/javascript/reference/operators/index.html +++ b/files/ko/web/javascript/reference/operators/index.html @@ -113,20 +113,20 @@ translation_of: Web/JavaScript/Reference/Operators <dl> <dt>{{JSxRef("Operators/Addition", "+")}}</dt> - <dd>덧셈 연산자.</dd> + <dd>더하기 연산자.</dd> <dt>{{JSxRef("Operators/Subtraction", "-")}}</dt> - <dd>뺄셈 연산자.</dd> + <dd>빼기 연산자.</dd> <dt>{{JSxRef("Operators/Division", "/")}}</dt> - <dd>나눗셈 연산자.</dd> + <dd>나누기 연산자.</dd> <dt>{{JSxRef("Operators/Multiplication", "*")}}</dt> - <dd>곱셈 연산자.</dd> + <dd>곱하기 연산자.</dd> <dt>{{JSxRef("Operators/Remainder", "%")}}</dt> <dd>나머지 연산자.</dd> </dl> <dl> <dt>{{JSxRef("Operators/Exponentiation", "**")}}</dt> - <dd>지수 연산자.</dd> + <dd>거듭제곱 연산자.</dd> </dl> <h3 id="관계_연산자">관계 연산자</h3> |