/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

2ality.com
| | kaworu.ch
2.2 parsecs away

Travel
| |
| | staltz.com
2.4 parsecs away

Travel
| | The cornerstone of JavaScript is the function. It is a flexible abstraction that works as the basis for other abstractions, such as Promises, Iterables, Observables, and others. I have been teaching these concepts in conferences and workshops, and over time I have found an elegant summary of these abstractions, layed out in a pyramid. In this blog post I'll provide a tour through these layers in the pyramid. FUNCTIONS X => Y Function Value The very b...
| | blog.bloomca.me
2.3 parsecs away

Travel
| | The blog of Seva Zaikov
| | www.mensurdurakovic.com
17.1 parsecs away

Travel
| One of the less-known, but cool JavaScript features are generators. Added in ES6, generators provide a different method for handling loops and asynchronous tasks. You can think of generators as functions with a pause button. They yield values on demand, unlike the normal functions that run to completion. This unique