It is the current draft/new version of the Ecmascript specification.
2
votes
1answer
58 views
let keyword in the for loop
ECMAScript 6's let is supposed to provide block scope without hoisting headaches. Can some explain why in the code below i in the function resolves to the last value from the loop (just like with var) ...
10
votes
2answers
134 views
Iterate over set elements
I have turned on the Chrome flag for experimental ECMAscript 6 features, one of which is Set. As I understand, the details of Set are broadly agreed upon by the spec writers.
I create a set a and add ...
0
votes
2answers
76 views
WeakMap implementation in EcmaScript5?
I've run across a JavaScript library that implement a cross-browser WeakMap in ES5. (WeakMap is slated for ES6.)
How can this possibly work without support in the JavaScript language itself?
Edit: ...
2
votes
1answer
216 views
When will ECMAScript v 6 become standard [closed]
Sorry if this has been asked before, but I'm wondering when ECMAScript v 6 will become more than a draft, and become the new standard. Going to the ECMA website (section 262) still shows edition 5.1 ...
1
vote
1answer
68 views
What's the difference between ES6 Map and WeakMap?
Looking this and this MDN pages it seems like the only difference between Maps and WeakMaps is a missing "size" property for WeakMaps. But is this true? What's the difference between them?
2
votes
2answers
108 views
Problems with extending regular Objects to support ES5 Array capabilities
I have long ago been willing to get the line between native Arrays and regular Objects totally blurred, not only extending Object with the same capabilities as Arrays got in ES5, but bundle up with my ...
0
votes
1answer
114 views
Is it worth to use TypeScript for a CMS? [closed]
First of all, some background: I have an idea to make a CMS which hardly depends on JavaScript usage (I could be more specific, but this is not relevant for the question)
I wanted to ask, is it worth ...
-1
votes
2answers
75 views
Array comprehensions in NodeJS
I heard somewhere that Node.JS has a lot of EcmaScript features. It seems that array comprehensions are not there by default.
Does Node.JS have array comprehensions? If so, how can I enable them?
1
vote
2answers
109 views
Surely ES6 must have a way to merge two javascript objects together, what is it?
I'm sick of tired of always having to write code like this:
function shallowExtend(obj1,obj2){
var key;
for ( key in obj2 ) {
if ( obj2.hasOwnProperty(key) === false ) continue;
...
0
votes
0answers
82 views
what will EcmaScript 6 bring to the table for us [closed]
Our company ported moderate chunks of business logic to JavaScript. We compile the code with a minifier, which further improves performance. Since the language is dynamically typed, it lends itself ...
3
votes
1answer
206 views
Does Ecmascript 6 support a mutable __proto__ property?
In the current Ecmascript 6 draft (November 2012), there is official support for the __proto__ property (Section B.3.1). This came as a bit of a surprise as, in current browser implementations, the ...
0
votes
1answer
200 views
ES6: Public Symbols vs Private Symbols
I have been searching for discussions about how to specify a symbol as public or private in ECMAScript 6.
As I undertand it, a private symbol would be created using a pattern similar to the ...
0
votes
1answer
35 views
How is for…of used in other languages which made it relevant for ECMAScript-6?
I noticed for...of loops were added to the ECMAScript-6 proposal and implemented in IE10 and Firefox, but have never heard of them until now. What's the typical use case for them?
7
votes
2answers
1k views
What are ECMAScript 6 WeakMaps?
After reading this description: http://wiki.ecmascript.org/doku.php?id=harmony:weak_maps
I'm trying to get a hang of it, but I do not get the overall picture. What is it all about? It seems to be ...

