Ask HN: Best current book to learn JavaScript?
21–30 of 99 posts
Re: Ask HN: Best current book to learn JavaScript?
#22Re: Ask HN: Best current book to learn JavaScript?
#23Re: Ask HN: Best current book to learn JavaScript?
#24Forget books, start coding!! To get going, CodeAcademy.com is amazing!!
I remember really hating the tutorial on 'How to use APIs with Javascript', for example. It basically told me exactly what to type in and I 'passed' the course without understanding any of it.
Re: Ask HN: Best current book to learn JavaScript?
#25Earlier quoted context omitted.
I think this is more for someone already familiar with the foundation level than for a beginner
The irony of a book called "You Don't Know JS" not in fact intended for people who don't know JS. :)
Re: Ask HN: Best current book to learn JavaScript?
#26Earlier quoted context omitted.
The irony of a book called "You Don't Know JS" not in fact intended for people who don't know JS. :)
Idk, I always interpreted it as a conversation, where you the reader are saying "I know javascript" and Kyle Simpson says that you don't, which is how the book is intended.
Re: Ask HN: Best current book to learn JavaScript?
#27I found JavaScript: The Good Parts useful. It's very short and gets right to the point. The author focuses on the parts of the language people tend to use every day and highlights some gotchas and common mistakes that you might not expect (like == vs ===) if you're coming in from other languages.
Re: Ask HN: Best current book to learn JavaScript?
#28Forget books, start coding!! To get going, CodeAcademy.com is amazing!!
Codecademy is good for the absolute basics, but I found anything beyond that seriously lacking. I remember really hating the tutorial on 'How to use APIs with Javascript', for example. It basically told me exactly what to type in and I 'passed' the course without understanding any of it.
Re: Ask HN: Best current book to learn JavaScript?
#29https://leanpub.com/javascriptallongesix
Re: Ask HN: Best current book to learn JavaScript?
#30I found JavaScript: The Good Parts useful. It's very short and gets right to the point. The author focuses on the parts of the language people tend to use every day and highlights some gotchas and common mistakes that you might not expect (like == vs ===) if you're coming in from other languages.
One warning: Although it's a good book, it was published in 2008 and a lot has been added to the language since then. It will give you a solid understanding of the core of the language, but for modern best practices you'll have to look elsewhere.