The problem with this question is by the time I finish typing my answer, the JS world will have moved on to the next big thing
Ask HN: Best current book to learn JavaScript?
51–60 of 99 posts
Re: Ask HN: Best current book to learn JavaScript?
#52Re: Ask HN: Best current book to learn JavaScript?
#53By the time the author writes it, it's published, and you read it, the information can be dated, sometimes extremely so.
There are gobs of online resources, and the best resource is rarely mentioned: reading other peoples code.
Once you get a basic understanding, you can start right clicking on webpages, "inspect source", opening the console window, and looking at how pages actually work. The debugger and single stepping chrome are quite good.
Re: Ask HN: Best current book to learn JavaScript?
#54Re: Ask HN: Best current book to learn JavaScript?
#55Secrets of the JavaScript Ninja, Second Edition along with You Don't Know JS are always my two recommendations. The two together shore up the weaknesses in the other.
Re: Ask HN: Best current book to learn JavaScript?
#56Re: Ask HN: Best current book to learn JavaScript?
#57Eloquent javascript is also fantastic. http://eloquentjavascript.net/
Re: Ask HN: Best current book to learn JavaScript?
#58And anti-answer: consider learning JavaScript from something other than a book. The publication cycle for conventional box is relatively long, relative to the pace of technology evolution. By the time the author writes it, it's published, and you read it, the information can be dated, sometimes extremely so. There are gobs of online resources, and the best resource is rarely mentioned: reading other peoples code. Onc…
Also there are many books online which don't need to go through the hoops you describe.
Re: Ask HN: Best current book to learn JavaScript?
#59And anti-answer: consider learning JavaScript from something other than a book. The publication cycle for conventional box is relatively long, relative to the pace of technology evolution. By the time the author writes it, it's published, and you read it, the information can be dated, sometimes extremely so. There are gobs of online resources, and the best resource is rarely mentioned: reading other peoples code. Onc…
Re: Ask HN: Best current book to learn JavaScript?
#60And anti-answer: consider learning JavaScript from something other than a book. The publication cycle for conventional box is relatively long, relative to the pace of technology evolution. By the time the author writes it, it's published, and you read it, the information can be dated, sometimes extremely so. There are gobs of online resources, and the best resource is rarely mentioned: reading other peoples code. Onc…
Agree with most of your answer but your last point is pretty optimistic. Nowadays most Javascript is a bundled package of 100 minified npm modules. Also there are many books online which don't need to go through the hoops you describe.
I agree that there are many books online though, and they can provide a lot of nice things like running code samples in your browser. However, I find video tutorials to provide a better experience than books, online or not. I suppose that's just a matter of personal preference though.