You-Dont-Know-JS
You-Dont-Know-JS copied to clipboard
A book series on JavaScript. @YDKJS on twitter.
Async & Perf book has: This function is passed two function callbacks that act as... I believe this needs rewording.
Great book series BTW A word of caution about using process.nextTick to 'chunk' your work. Consider the following node app... ``` javascript var a = 0; var count = parseInt(process.argv[2]);...
The contribution guidelines says not to worry about typo(s), but I'm not sure I can let a mis-spelled method name slide (: In the proxies section, right after the first...
You briefly introduce this here https://github.com/getify/You-Dont-Know-JS/blob/master/up%20%26%20going/ch2.md#this-identifier and here https://github.com/getify/You-Dont-Know-JS/blob/master/up%20%26%20going/ch3.md#this--object-prototypes. I know that you don't want to get into details about these four methods, and that you'll do so in a...
Per Kyle's request, I'm posting what I find to be the serious issues with chapter 6 as they now stand; of course I'm open to being persuaded that I may...
The info on strict mode throwing an error for duplicate property names in an object literal didn't mention that it's been removed in ES2015 because of computed property names, so...
I was studying this at MakerSquare, and i was following along with the code and i noticed these two lines, perhaps this makes it clearer. Love the materials!
I had to jump between the code and the text a couple of times to figure out which snippets you were talking about.
array generics, string generics, etc.