AbdulFattaah Popoola
AbdulFattaah Popoola
All the download links in the book point to the previous chapter. For example the link for chapter 10 points to the download link for chapter 9
lodash has changed from _.any to _.some `function isAllDefined(val) { return !_.any(val, _.isUndefined); }` should be `function isAllDefined(val) { return !_.some(val, _.isUndefined); }`
Third paragraph: > The factory function is expected to _**the return**_ the filter. should be > The factory function is expected to _**return**_ the filter.
The _.isEqual function already returns true for NaN values.
See issue #333.
_ > *In this chapte _ should be > In this chapter
The text: 'Addition and subtraction cannot result in a negative zero' is not absolute. An edge case is with -0 + -0 = -0. Ditto for the subtraction case. The...
Would it be better to just do a quick check for variables, set the flag to true and return immediately? I see most of the forEach loops keep overwriting the...
> require('stream-js')() > TypeError: Cannot read property 'initConfig' of undefined > at module.exports (C:\Users\ja27264\node_modules\stream-js\gruntfile.js:4:10) > at repl:1:21 > at REPLServer.defaultEval (repl.js:248:27) > at bound (domain.js:280:14) > at REPLServer.runBound [as eval](domain.js:293:12)...