Reputation:
Since the ECMA 6 become an official standard three months ago (June 2015), ECMA6 reference how can it be that it's syntax is still not supported in main browsers?
From my own checks, I've found that even simple keywords like: let (block scoped variable) seems not to work not in IE11, FF or even Safari
Does anyone have an information, or at least can put to to the right direction?
I've found this stackoverflow question : Firefox cannot use let word
But it seems to be out of date, since it's not a draft for a few months already.
Upvotes: 2
Views: 164
Reputation: 68
There is a similar question here: When will I Be Able to Use ES6
The top answer is very helpful. Pretty much by the end of 2015 there will be support for ES6. Right now you need to turn experimental javascript on your browser for ES6 code to function.
Upvotes: 1
Reputation: 472
Here's the most complete compatibility table http://kangax.github.io/compat-table/es6/ I've ever seen.
Upvotes: 2