
JavaScript frameworks.
Based on questions to Stack Overflow.
Clearly there’s a big move away from AngularJS (Angular 1.x) but a fair amount of that is going toward React as well as Angular 4.

JavaScript frameworks.
Based on questions to Stack Overflow.
Clearly there’s a big move away from AngularJS (Angular 1.x) but a fair amount of that is going toward React as well as Angular 4.
Says it all really.
Somehow I didn’t know that you can use bind as a built in way to do partial function application in JavaScript.
var add = function (a, b) {
return a + b;
};
var add5 = add.bind(null, 5);
add5(10) === 15;
The first arg is commonly used to bind the function “this” variable. What I didn’t realise was that subsequent args get prepended as arguments to the bound function.

Originally shared by nixCraft
Lmao.
Learning about RxJS by implementing it from scratch.
Progressive web apps. Too bad they don’t work half as well on an iPhone.
Speaking globally however, they are already serving hundreds of millions of people.
async / await have been part of Python since 3.5.
Too bad nobody uses them.
just => fucking => use => “them”;
Is equivalent to:
function (just) {
return function (fucking) {
return function (use) {
return “them”;
}
}
}
