Chrome 57 and Firefox 52 shipped it a fortnight apart in March. Replacing a grid system of nested rows, negative margins and a clearfix with fourteen lines.
wp_localize_script() exists to pass translated strings to JavaScript and has been used for everything else because it was the only way to get data across. 4.5 added the…
webpack wraps every module in a function, which costs a closure per module at parse and at runtime. Scope hoisting concatenates modules that can safely share a scope…
Before 16, an exception during render left React in an inconsistent state and the usual advice was to let it crash. 16 unmounts the whole tree by default,…
Marking a function async changes its return value regardless of what the body does, which is obvious stated plainly and is the source of most confusion about them.…
A deep component importing a helper writes ../../../lib/money, and the path breaks the moment the file moves — which makes reorganising a tree a mechanical exercise in fixing…
A computed value usually starts as a method and becomes a property when someone forgets the parentheses. An accessor lets it be read as a property while still…
Minified stack traces are unreadable, and the usual fix — shipping source maps — publishes the original source to anyone who opens devtools. Both problems have the same…