Writing import and export does not mean the browser is loading modules. Babel rewrites both into CommonJS, webpack resolves them at build time, and what ships is one…
Array spread is ES2015 and object spread is not — it is a stage 3 proposal, available only through Babel, and the syntactic similarity makes it very easy…
jQuery has had $.Deferred since long before the platform had promises, and it is close enough to look interchangeable. It is not: prior to 3.0 a jQuery Deferred…
Unpacking a few fields out of an options object is three or four lines of near-identical assignment at the top of every function. Destructuring does it in the…
setTimeout(fn, 16) approximates 60fps and is wrong in both directions: it keeps firing in a background tab, burning battery on frames nobody sees, and it drifts out of…
Object.assign() copies enumerable own properties from one object onto another, which reads like a deep clone and is not one. Nested objects are copied by reference, so mutating…