bdd_book icon indicating copy to clipboard operation
bdd_book copied to clipboard

This is the example code for my book "Behaviour Driven Development with JavaScript" (Developer Press): http://developerpress.com/en/behaviour-driven-development-javascript-1

Results 3 bdd_book issues
Sort by recently updated
recently updated
newest added

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()...

You must be a con artist. :) The best money I've ever spent on a developer book.