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
31 lines (31 loc) · 1.03 KB
/
chapters.yml
File metadata and controls
31 lines (31 loc) · 1.03 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
- 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: 编程风格
- stdlib/: 标准库
- stdlib/object.md: Object 对象
- stdlib/attributes.md: 属性描述对象
- stdlib/array.md: Array 对象
- stdlib/wrapper.md: 包装对象
- stdlib/boolean.md: Boolean 对象
- stdlib/number.md: number 对象
- advanced/: 高级语法
- advanced/strict.md: 严格模式