Jaehwan Ryu
Jaehwan Ryu
I appreciate your great work for this book and I'm happy to find this book. I found small error while playing around with some code in this file. https://github.com/marcoemrich/bdd_book/blob/master/javascript_refresher/product_inheritance_with_extend.js#L5 Object.prototype.extend...
Reference: https://github.com/marcoemrich/bdd_book/blob/master/javascript_refresher/product_method_lookup.js#L15-L25 ``` sh var Book = Object.create(Product).extend({ init: function(name, author) { Product.init(name); this._author = author; return this; }, _author: null, setAuthor: function(author) { this._author = author; }, author: function()...