I would of course add "The good parts" by Crockford to the list.<p>But maybe that is just par for the language course, before one even starts to wants to master Engineering :)<p>JavaScript: The Good Parts - <a href="http://www.amazon.com/gp/product/0596517742/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=0596517742&linkCode=as2&tag=shadowcats-20" rel="nofollow">http://www.amazon.com/gp/product/0596517742/ref=as_li_ss_tl?...</a><p>Here's a few other good ones:<p>Functional JavaScript: Introducing Functional Programming with Underscore.js - <a href="http://www.amazon.com/gp/product/1449360726/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1449360726&linkCode=as2&tag=shadowcats-20" rel="nofollow">http://www.amazon.com/gp/product/1449360726/ref=as_li_ss_tl?...</a><p>Secrets of the JavaScript Ninja - <a href="http://www.amazon.com/gp/product/193398869X/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=193398869X&linkCode=as2&tag=shadowcats-20" rel="nofollow">http://www.amazon.com/gp/product/193398869X/ref=as_li_ss_tl?...</a><p>Javascript Allongé (free to read online) - <a href="https://leanpub.com/javascript-allonge" rel="nofollow">https://leanpub.com/javascript-allonge</a><p>Javascript Spessore (free to read online, but currently work in progress) - <a href="https://leanpub.com/javascript-spessore" rel="nofollow">https://leanpub.com/javascript-spessore</a><p>Here's a good one about Angular, my favorite framework:<p>Mastering Web Application Development with AngularJS -
<a href="http://www.amazon.com/gp/product/1782161821/ref=as_li_ss_tl?ie=UTF8&camp=1789&creative=390957&creativeASIN=1782161821&linkCode=as2&tag=shadowcats-20" rel="nofollow">http://www.amazon.com/gp/product/1782161821/ref=as_li_ss_tl?...</a><p>I would of course also recommend the Egghead videos for any Angular aficionados: <a href="http://www.youtube.com/playlist?list=PLP6DbQBkn9ymGQh2qpk9ImLHdSH5T7yw7" rel="nofollow">http://www.youtube.com/playlist?list=PLP6DbQBkn9ymGQh2qpk9Im...</a><p>PS. The Amazon links are affiliate links.
1. Async JavaScript: Build More Responsive Apps with Less Code
<a href="http://www.amazon.com/gp/product/B00AKM4RVG/ref=kinw_myk_ro_title" rel="nofollow">http://www.amazon.com/gp/product/B00AKM4RVG/ref=kinw_myk_ro_...</a><p>Any serious JS dev needs to master async.<p>2. Functional JavaScript: Introducing Functional Programming with Underscore.js
<a href="http://www.amazon.com/gp/product/B00D624AQO/ref=kinw_myk_ro_title" rel="nofollow">http://www.amazon.com/gp/product/B00D624AQO/ref=kinw_myk_ro_...</a><p>While the book uses Underscore, that's not its focus. A good understanding of functional programming and when it can be useful is a valuable skill.
Don't read _Design Patterns_ as a novice. It will hurt you.<p>Or, if you have to read it, please realize that everything does not need a factory, and you almost certainly don't want to have nested and indirect factories (I have three letters for you that should be terrifying: COM), and that not every piece of code you write needs to be from The Book of Patterns, and in fact if you <i>do</i> find yourself leafing through TBoP in search of a pattern to use, you're going about things all wrong and your cow-orkers will hate you and string you up for Pattern Abuse and the <i>best</i> thing that can happen is that you'll look at your code six months from now and say to yourself, "Ewwww, this crap has got to go."
Mastering "engineering" in a language and maximizing your interview "performance" are loosely coupled at best.<p>Also, leave the affiliate links in. Those who care to remove them know how to change the affiliate code to benefit their favourite charity.
CODE is a book I recommend to tons of people, such a great read, can't recommend it enough. From EE starters to CS to the curious observer, tons of great information delivered in an enjoyable way.
It is not really a book but I find resources on mdn very helpful<p><a href="https://developer.mozilla.org/en-US/learn/javascript" rel="nofollow">https://developer.mozilla.org/en-US/learn/javascript</a><p>Besides tutorials on mdn they have included links to some of the best javascript resources on the internet and classified them according to the level of the individual. It was very helpful when I was starting out in javascript and I still go back time to time to refresh some concepts
I can highly recommend "Professional JavaScript for Web Developers" by Nicholas C. Zakas. It's almost a thousand pages but I read it cover to cover.<p>It explains all aspects of JavaScript in a very clear and concise way and contains the best description of the prototype chain and inheritance in JS I've ever read.
Does anyone have any thoughts on recommendation No# 4 ("Algorithms (4th Edition) by Robert Sedgewick & Kevin Wayne") vs my personal favourite algorithms reference: CLRS[1].<p>I love CLRS but am always up for increasing my knowledge base when it comes to algorithms. Has anyone read both?<p>[1]: <a href="http://en.wikipedia.org/wiki/Introduction_to_Algorithms" rel="nofollow">http://en.wikipedia.org/wiki/Introduction_to_Algorithms</a>
Any recommendations for resources to improve one's Javascript code running on the back-end, for example node.js/V8 or vert.x/JVM.<p>Specifically: (i) how to leverage Javascript to write better networking code (e,g; cluster, websockets, etc), and (ii) for number crunching on the server-side, should the relevant code be written from scratch in functional Javascript, or is it better to fork a process that runs (say) Julia code?
Surprised to see no mention of "JavaScript: The Definitive Guide" (<a href="http://shop.oreilly.com/product/9780596805531.do" rel="nofollow">http://shop.oreilly.com/product/9780596805531.do</a>). It's a big, heavy book but it's what really pushed me to a higher level of JS understanding.
As we are plugging somebody else's books... I can throw in a book that a friend of mine is a co-author on "Ext JS in action version 2" which I heard has just materialized. Linky below:<p><a href="http://www.manning.com/garcia3/" rel="nofollow">http://www.manning.com/garcia3/</a>