《JavaScript语言精粹》简介:

本书通过对JavaScript语言的分析,甄别出好的和坏的特性,从而提取出相对这门语言的整体而言具有更好的可靠性、可读性和可维护性的JavaScript的子集,以便你能用它创建真正可扩展的和高效的代码。

雅虎资深JavaScript架构师Douglas Crockford倾力之作。

向读者介绍如何运用JavaScript创建真正可扩展的和高效的代码。

《JavaScript语言精粹》摘录:

We all find the good parts in the products that we use. We value simplicity, and when simplicity isn’t offered to us, we make it ourselves. My microwave oven has tons of features, but the only ones I use are cook and the clock. And setting the clock is a struggle. We cope with the complexity of feature-driven design by finding and sticking with the good parts. It would be nice if products and programming languages were designed to have only good parts.

《JavaScript语言精粹》目录:

前言 I
第1章 精华 1
为什么是JAVASCRIPT? 2
分析JAVASCRIPT 3
一个简单的试验场 4
第2章 语法 5
空白 5
标识符 6
数字 7
字符串 8
语句 10
表达式 15
字面量 17
函数 19
第3章 对象 20
对象字面量 20
检索 21
更新 22
引用 22
原型 22
反射 23
枚举 24
删除 24
减少全局变量污染 25
第4章 函数 26
函数对象 26
函数字面量 27
调用 27
参数 31
返回 31
异常 32
给类型增加方法 32
递归 34
作用域 36
闭包 37
回调 40
模块 40
级联 42
套用 43
记忆 44
第5章 继承.. 46
伪类 47
对象说明符 50
原型 50
函数化 52
部件 55
第6章 数组 58
数组字面量 58
长度 59
删除 60
枚举 60
混淆的地方 61
方法 62
维度 63
第7章 正则表达式 65
一个例子 66
结构 70
元素 72
第8章 方法 78
第9章 代码风格 94
第10章 优美的特性 98
附录A:糟粕 101
附录B:鸡肋 109
附录C:JSLINT 115
附录D:语法图 125
附录E:JSON 136
索引 147
· · · · · ·