《JavaScipt 语言精粹》 作者: Douglas Crockford
拿到这本书的时候就读错了名字。悲剧啊。内容写的挺详细的,就是书中用得铁路图实在看着有点费劲。
养分
1. beget
创建一个使用原对象作为其原型的新的对象。1
2
3
4
5
6
7if (typeof Object.beget !== 'function') {
Object.beget = function(obj) {
var F = function() {};
F.prototype = obj;
return new F();
}
}