Skip to content

Commit e615f78

Browse files
committed
commit
1 parent be81416 commit e615f78

File tree

2 files changed

+103
-33
lines changed

2 files changed

+103
-33
lines changed

README.markdown

+31-31
Original file line numberDiff line numberDiff line change
@@ -20,37 +20,37 @@
2020

2121
## [第二章 高质量JavaScript基本要点](chapter2.markdown)
2222

23-
- [编写可维护的代码](chapter2.markdown)
24-
- [减少全局对象](chapter2.markdown)
25-
- [全局对象带来的困扰](chapter2.markdown)
26-
- [忘记var时的副作用](chapter2.markdown)
27-
- [访问全局对象](chapter2.markdown)
28-
- 单 var 模式
29-
- 声明提前:分散的 var 带来的问题
30-
- for 循环
31-
- for-in 循环
32-
- (不)扩充内置原型
33-
- switch 模式
34-
- 避免隐式类型转换
35-
- 避免使用 eval()
36-
- 使用parseInt()进行数字转换
37-
- 编码风格
38-
- 缩进
39-
- 花括号
40-
- 左花括号的放置
41-
- 空格
42-
- 命名规范
43-
- 构造器命名中的大小写
44-
- 单词分隔
45-
- 其他命名风格
46-
- 书写注释
47-
- 书写API文档
48-
- 一个例子:YUIDoc
49-
- 编写易读的代码
50-
- 相互评审
51-
- 生产环境中的代码压缩
52-
- 运行JSLint
53-
- 小节
23+
- [编写可维护的代码](chapter2.markdown#a2)
24+
- [减少全局对象](chapter2.markdown#a3)
25+
- [全局对象带来的困扰](chapter2.markdown#a4)
26+
- [忘记var时的副作用](chapter2.markdown#a5)
27+
- [访问全局对象](chapter2.markdown#a6)
28+
- [单 var 模式](chapter2.markdown#a7)
29+
- [声明提前:分散的 var 带来的问题](chapter2.markdown#a8)
30+
- [for 循环](chapter2.markdown#a9)
31+
- [for-in 循环](chapter2.markdown#a10)
32+
- [(不)扩充内置原型](chapter2.markdown#a11)
33+
- [switch 模式](chapter2.markdown#a12)
34+
- [避免隐式类型转换](chapter2.markdown#a13)
35+
- [避免使用 eval()](chapter2.markdown#a14)
36+
- [使用parseInt()进行数字转换](chapter2.markdown#a15)
37+
- [编码风格](chapter2.markdown#a16)
38+
- [缩进](chapter2.markdown#a17)
39+
- [花括号](chapter2.markdown#a18)
40+
- [左花括号的放置](chapter2.markdown#a19)
41+
- [空格](chapter2.markdown#a20)
42+
- [命名规范](chapter2.markdown#a21)
43+
- [构造器命名中的大小写](chapter2.markdown#a22)
44+
- [单词分隔](chapter2.markdown#a23)
45+
- [其他命名风格](chapter2.markdown#a24)
46+
- [书写注释](chapter2.markdown#a25)
47+
- [书写API文档](chapter2.markdown#a26)
48+
- [一个例子:YUIDoc](chapter2.markdown#a27)
49+
- [编写易读的代码](chapter2.markdown#a28)
50+
- [相互评审](chapter2.markdown#a29)
51+
- [生产环境中的代码压缩(Minify)](chapter2.markdown#a30)
52+
- [运行JSLint](chapter2.markdown#a31)
53+
- [小结](chapter2.markdown#a32)
5454

5555
## 第三章 直接量和构造函数
5656

0 commit comments

Comments
 (0)