We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3a3ad commit e2d5dc9Copy full SHA for e2d5dc9
es5/README.md
@@ -1051,7 +1051,7 @@
1051
var totalScore = this.reviewScore + ' total score';
1052
```
1053
1054
- - 使用 `parseInt` 转换数字并且总是带上类型转换的基数。
+ - 使用 `parseInt` 转换数字时总是带上类型转换的基数。
1055
1056
```javascript
1057
var inputValue = '4';
@@ -1115,7 +1115,7 @@
1115
1116
## <a name="naming-conventions">命名规则</a>
1117
1118
- - 避免单字幕命名。命名应具备描述性。
+ - 避免单字母命名。命名应具备描述性。
1119
1120
1121
// bad
@@ -1143,7 +1143,7 @@
1143
function thisIsMyFunction() {}
1144
1145
1146
- - 使用帕斯卡式(所有单词首字母大写)命名构造函数或类。
+ - 使用帕斯卡式命名构造函数或类。
1147
1148
1149
0 commit comments