From 93ecd3acd6ab9717746da9f6d6d01455ed8c3601 Mon Sep 17 00:00:00 2001 From: ggbong734 Date: Mon, 10 Dec 2018 20:26:23 -0800 Subject: [PATCH] Added href statements to hide link addresses (#28738) Also fixed the link to lead to the right section on the web page. --- guide/chinese/javascript/arithmetic-operation/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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]