ECMAScript Harmony is the code name for proposals aiming to extend the current ECMA-262 specification.
Set seems like a nice way to create Arrays with guaranteed unique elements, but it does not expose any good …
javascript arrays collections syntax ecmascript-harmonyI have a flat JS object: {a: 1, b: 2, c: 3, ..., z:26} I want to clone the object except for one element: {…
javascript ecmascript-6 ecmascript-harmony ecmascript-7What is the best way to do the below in more functional way (with ES6/ES7) let cols = []; for (let …
javascript functional-programming ecmascript-6 ecmascript-harmonyThe typical way to loop x times in JavaScript is: for (var i = 0; i < x; i++) doStuff(i); But …
javascript generator ecmascript-6 ecmascript-harmonyThe question is directed at people who have thought about code style in the context of the upcoming ECMAScript 6 (Harmony) …
javascript lambda ecmascript-6 ecmascript-harmony arrow-functionsUPDATE: Recently a brilliant article from Mozilla came up. Read it if you're curious. As you may know they are …
javascript symbols ecmascript-harmony ecmascript-6How one can write a function, which takes only few attributes in most-compact way in ES6? I've came up with …
javascript ecmascript-6 ecmascript-harmony destructuring ecmascript-nextNew ES 6 (Harmony) introduces new Set object. Identity algorithm used by Set is similar to === operator and so not much …
javascript set ecmascript-harmonyTrying to use a new ES6 based node.js ODM for Mongo (Robe http://hiddentao.github.io/robe/) Getting "unexpected …
node.js ecmascript-6 ecmascript-harmonyI'm using ES6 with the Webpack es6-transpiler per my article here: http://www.railsonmaui.com/blog/2014/10/02/integrating-webpack-and-the-es6-transpiler-into-an-existing-rails-project/ Does …
javascript ecmascript-6 ecmascript-harmony