Added href statements to hide link addresses (#28738)

Also fixed the link to lead to the right section on the web page.
pull/25017/head^2
ggbong734 2018-12-10 20:26:23 -08:00 committed by Jingyi Ding
parent f23d379010
commit 93ecd3acd6
1 changed files with 3 additions and 3 deletions

View File

@ -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时这是一个很好的快捷方式。
_提示_有一个方便的 <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Increment' target='_blank' rel='nofollow'>[增量]</a>(++)运算符当你将数字加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减去数字时这是一个很好的捷径。
_提示_有一个方便的 <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Decrement' target='_blank' rel='nofollow'>[减量]</a>(--)运算符当你用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)
资料来源:令人惊叹的<a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators' target='_blank' rel='nofollow'>[MDN]</a>