This is my presentation for the Next Build-2018.
Demo code on GitHub.
44 posts
#management 16 #js 10 #ts 9 #humor 8 #lingua 5 #archive 5 #project 4 #product_vision 4 #communication 4 #agile 4 #programming 3 #product_goal 3 #llm 3 #typescript 2 #thoughts 2 #team 2 #sql 2 #rx 2 #promises 2 #javascript 2 #code_review 2 #async 2 #architecture 2 #ubuntu 1 #product_owner 1 #linux 1 #jtbd 1 #git 1 #electron 1 #education 1 #color 1
Think Reactive
📅 Created 8 years ago 👁️ 976
Array methods (JS/TS)
📅 Created 8 years ago 👁️ 1049
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 8 years ago 👁️ 1495
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 8 years ago 👁️ 975
Promises provide a pretty nice interface for async programming in Javascript.