Who Is This Book For?

This book is aimed at intermediate JavaScripters. You should know how variables are scoped. Keywords like typeof, arguments, and this shouldn’t faze you. Perhaps most importantly, you should understand that

​ 
func(​function​(arg) { ​return​ next(arg); });

is just a needlessly verbose way of writing

​ 
func(next);

except in rare cases. (See Reg Braithwaite’s excellent article “Captain Obvious on JavaScript” for more examples of small but important functional idioms.)[5]

What you don’t need to know is how asynchronous events are scheduled in JavaScript. We’ll cover that in the next chapter.

Get Async JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.