1,5 Milliarden
140 Millionen
76 Millionen
Hürde 1
Hürde 2
Hürde 3
Quelle: Hacker News / Ryan Williams
Vorteil 1a
Quelle: Stackoverflow Survey 2016 (Lohnvergleich Front-End)
Vorteil 1b
Quelle: http://chrisharrington.github.io/demos/performance/
Vorteil 2
Vorteil 3
Vorteil 4
const element = (
<h1 className="greeting">
Hello, world!
</h1>
);
const element = React.createElement(
"h1",
{className: "greeting"},
"Hello, world!"
);
function reducer(state, action) {
switch (action.type) {
case EXAMPLE_ACTION:
return state.set("example", action.payload);
default:
return state;
}
}