ES2015 (also known as ES6), the version of the JavaScript specification ratified in 2015, is a huge improvement to the language’s expressive power thanks to features like classes, for-of, destructuring, spread, tail calls, and much more. But powerful lang… Read more
Similar
immutability-util - :herb: Mutate a copy of data without changing the original source by path string, just like the get/set in lodash. Inspired by immutability-helper and rewrite with ES6. (more…)
Read more »
In this article, I propose a way of writing relatively simple apps without using a fully-fledged framework. It is based on my experience during an interview process. I am not trying to persuade you… (more…)
Read more »
It does not add any “missing” features to JS. It simply supplies syntactic sugar for a pattern (antipattern?)... (more…)
Read more »
Here are 3 ways to filter out duplicates from an array and return only the unique values... (more…)
Read more »
With browsers starting to implement ES6 modules, I took a look at the landscape and compared the new tech to bundling, the current state of the art for publishing Javascript files. (more…)
Read more »