Any function that takes an input and computes to true or false as a result is called a "predicate" function #javascript #react #angular
Аневризма retweeted
A 5 Part Series on React Internals bit.ly/2xb7Wn4 #ReactJS #JavaScript
3
1
Аневризма retweeted
Two Tips to Improve Performance by 30% With React and Webpack bit.ly/2xbk8o0 #ReactJS #JavaScript #PerfMatters
2
2
Функция, которая принимает функцию в качестве параметра в функцию по умолчанию let f = (fn = () => {}) => fn() #javascript #react #angular
1
1
#функция, которая возвращает другую функцию... красота!!! let foo = () => () => x; #javascript #react #функциональноепрограммираваное
1
1
let foo = fn => fn(); foo(x => bar(x)); функциональное программирование - functional programming #javascript #es2016 #react #angular
2
2
in a few words, what's a web architect? It confuses me a lot @holtbt @jhusain @toddmotto @teropa #javascript #react #angular
1
1
1
Аневризма retweeted
Fetching API Data with React.JS bit.ly/2wIyYlH #JavaScript #ReactJS
3
1
Аневризма retweeted
All About React Router 4 bit.ly/2vPh0kZ #ReactJS #JacaScript
4
4
for (var i = 0; i => 5:, i += 1) { (function fn(i) { setTimeout(() => console.log(i), 1 * 1000); }(i)); #javascript #clousure #react
"Hoisting" is made up, it doesn't exist on the spec. It's actually a metaphor for describe how the compiler works #javascript #react
2
let afn = async () => try { await otherAsync() }catch(e) {} // equivalent let afn = () => otherAsync().catch(e); #javascript #react #es2017
1
2
A #router state is an arrangement of application components that defines what is visible on the screen. #javascript #angular #angular4
1
1
when we use "named arguments" on mixins, the order doesn't matter, god damn is cool #sass #css #scss #webdesign
Instead of loading multiple small images, consider spriting (single image with coordinates) #javascript #webpack #react #angular #inferno
1
2
#webpack Core Concepts Entries - Where to start bundling? Output - Where to output? Loaders - How to transform? Plugins - How to bundle?