forked from wangdoc/javascript-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapters.yml
More file actions
47 lines (47 loc) · 1.52 KB
/
chapters.yml
File metadata and controls
47 lines (47 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
- basic/: 入门篇
- basic/introduction.md: 导论
- basic/history.md: 历史
- basic/grammar.md: 基本语法
- types/: 数据类型
- types/general.md: 概述
- types/null-undefined-boolean.md: null,undefined 和布尔值
- types/number.md: 数值
- types/string.md: 字符串
- types/object.md: 对象
- types/function.md: 函数
- types/array.md: 数组
- operators/: 运算符
- operators/arithmetic.md: 算术运算符
- operators/comparison.md: 比较运算符
- operators/boolean.md: 布尔运算符
- operators/bit.md: 二进制位运算符
- operators/priority.md: 其他运算符,运算顺序
- features/: 语法专题
- features/conversion.md: 数据类型的转换
- features/error.md: 错误处理机制
- features/style.md: 编程风格
- features/console.md: console 对象与控制台
- stdlib/: 标准库
- stdlib/object.md: Object 对象
- stdlib/attributes.md: 属性描述对象
- stdlib/array.md: Array 对象
- stdlib/wrapper.md: 包装对象
- stdlib/boolean.md: Boolean 对象
- stdlib/number.md: Number 对象
- stdlib/string.md: String 对象
- stdlib/math.md: Math 对象
- stdlib/date.md: Date 对象
- stdlib/regexp.md: RegExp 对象
- stdlib/json.md: JSON 对象
- oop/: 面向对象编程
- oop/new.md: 实例对象与 new 命令
- oop/this.md: this 关键字
- oop/prototype.md: 对象的继承
- oop/object.md: Object 对象的相关方法
- oop/strict.md: 严格模式
- async/: 异步操作
- async/general.md: 概述
- async/timer.md: 定时器
- async/promise.md: Promise 对象
- dom/: DOM
- dom/general.md: 概述