So we finished previous part with the reference to the code of the demo (GitHub page). It’s fully working version. But let’s recreate it from scratch.
5 posts tagged with #archive ❌
Think reactive (the code)
📅 Created 6 years ago 👁️ 139
Think Reactive
📅 Created 6 years ago 👁️ 171
This is my presentation for the Next Build-2018.
Demo code on GitHub.
Array methods (JS/TS)
📅 Created 6 years ago 👁️ 143
The instance of Array
(under the hood: the Array.prototype
) provides a bunch of methods for handling its content in functional way. Almost any array method can be substituted with another one.
Why? ― because JavaScript is so JavaScript.
Despite of we can, it doesn’t mean we have to. So let’s take a deeper look at array methods and decide what’s the proper use case for each of them.
Promises (part two): the legend of the lost Promise
📅 Created 7 years ago 👁️ 169
There is one trick with Promises that might lead to nasty consequences: you might lose the async job. How it happens and how to avoid it?
Async Javascript: tricks with Promises (part one)
📅 Created 7 years ago 👁️ 135
Promises provide a pretty nice interface for async programming in Javascript.