A book series on JavaScript
github.com
A book series on JavaScript
1–10 of 111 posts
Re: A book series on JavaScript
#2I am jealous of all the scenes you follow, maam/sir!
Re: A book series on JavaScript
#3Re: A book series on JavaScript
#4Re: A book series on JavaScript
#5I really don't get the arrogant "You don't know X". Maybe I know it, maybe I don't know it. But if I know it already, then I am wasting my time since I think I don't know it (not really). However if I don't know it, then the condescending tone doesn't really motivate me to want to know (while I love to learn about Javascript).
https://en.wikipedia.org/wiki/You_Don%27t_Know_Jack_(video_g...
Re: A book series on JavaScript
#6Re: A book series on JavaScript
#7I really don't get the arrogant "You don't know X". Maybe I know it, maybe I don't know it. But if I know it already, then I am wasting my time since I think I don't know it (not really). However if I don't know it, then the condescending tone doesn't really motivate me to want to know (while I love to learn about Javascript).
I always assumed it was a play on the game You Don't Know Jack, but I could be wrong. https://en.wikipedia.org/wiki/You_Don%27t_Know_Jack_(video_g...
Re: A book series on JavaScript
#8Re: A book series on JavaScript
#9I can highly recommend these books. They're one of the only books that do a real deep-dive into the language. I often have to interview people for javascript jobs. It's astonishing how few of them actually get how the `this` keyword, closures, prototypes etc work. So the title of the series may be arrogant, but not wrong.
After reading these books I was kicking myself for not doing it sooner. All the JS mysteries just fade away as you go through it.
Re: A book series on JavaScript
#10An entire book is dedicated to "this", when it's only "the stuff on the left side of the dot" (it changed my life when i understood that)
It's also not just 'the stuff on the left side of the dot'. using strict mode, call/apply, the new keyword and arrow functions have influence on what `this` is. And they are applied in a certain order of precedence you need to know.