diff --git a/guide/chinese/javascript/arithmetic-operation/index.md b/guide/chinese/javascript/arithmetic-operation/index.md
index 3d1b4df014..48e5355f27 100644
--- a/guide/chinese/javascript/arithmetic-operation/index.md
+++ b/guide/chinese/javascript/arithmetic-operation/index.md
@@ -20,7 +20,7 @@ JavaScript为用户提供了五个算术运算符: `+` , `-` , `*` , `/`
"foo" + "bar" // concatenates the strings and returns "foobar"
```
-_提示:_有一个方便的[增量](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Increment_()运算符,当你将数字加1时,这是一个很好的快捷方式。
+_提示:_有一个方便的 [增量](++)运算符,当你将数字加1时,这是一个很好的快捷方式。
## 减法
@@ -37,7 +37,7 @@ _提示:_有一个方便的[增量](https://developer.mozilla.org/en-US/docs/W
5 + "foo" // returns NaN (Not a Number)
```
-_提示:_有一个方便的[减量](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Decrement_(--)运算符,当你用1减去数字时,这是一个很好的捷径。
+_提示:_有一个方便的 [减量](--)运算符,当你用1减去数字时,这是一个很好的捷径。
## 乘法
@@ -125,4 +125,4 @@ _提示:_有一个方便的[减量](https://developer.mozilla.org/en-US/docs/W
_!重要!_如您所见,您**无法**对`Infinity`执行任何操作。
-资料来源:令人惊叹的[MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators) 。
\ No newline at end of file
+资料来源:令人惊叹的[MDN]。