The Miracle of Generators • Bodil Stokke • GOTO 2016

preview_player
Показать описание
This presentation was recorded at GOTO Chicago 2016

Bodil Stokke - Functional Programming Hipster & Lead Web Developer at Trading Technologies @bodilpwnz

ABSTRACT
The ECMAScript 2015 specification introduced iterators, which generalise iteration over common data structures, as well as providing an interface for allowing you to iterate over any custom data structures using common language constructs. ES2015 also introduced generator functions, which make writing arbitrary iterators a lot easier and less boilerplatey.

But generators aren’t just for making simple iterators over data structures. Because they’re bidirectional—they don’t only produce output, they can also take input—they’re actually coroutines, which means there’s no end to the sort of fun you can apply them to. We’re going to explore how we can use them to make asynchronous programming in JavaScript a lot more elegant—to chart a path out of callback hell. And then we’re going to take a look at what we’ve really discovered: one of the most fearsome mysteries of computer science, suddenly laid bare before us. [...]

Read the full abstract here:

#ECMAScript #Programming #ES2015 #Generators #JavaScript #BodilStokke

Looking for a unique learning experience?

SUBSCRIBE TO OUR CHANNEL - new videos posted almost daily.
Рекомендации по теме
Комментарии
Автор

Are you sure you're not missing a bind call on the RHS in the associativity law? (49:30):

TheodoreCackowski
Автор

same video but wasting less time (hers and ours) with so many references about how much she hates the language, might be more interesting and productive for everybody

DiegoBM