6 ms·
can someone explain to me is ES7 tied to the browser version/type, or usually all the popular browsers support it out of the box? because I couldn't find any i
by finalight 11y ago
can someone explain to me is ES7 tied to the browser version/type, or usually all the popular browsers support it out of the box?
because I couldn't find any information on that
- curun1r 11y agoIt's complicated. ES6/7 support isn't binary. But sites like this help: http://caniuse.com/ http://caniuse.com/
- asutherland 11y agohttp://kangax.github.io/compat-table/es6/ http://kangax.github.io/compat-table/es6/ and http://kangax.github.io/compat-table/es7/ http://kangax.github.io/compat-table/es7/ are particularly good for ES since it breaks out things into the nitty gritty features, providing the code samples that are tested.
- callahad 11y agoLike other web standards, these things tend to get implemented in a piecemeal fashion according to consensus and demand. By the time the standards are published, much of their content is already implemented in modern browsers. For example, the ES6 spec was just published a few months ago, so it will still be a year before we see ES7. In spite of that, the async / await capabilities are sufficiently compelling and agreed upon that patches are already being reviewed for Firefox: https://bugzilla.mozilla.org/show_bug.cgi?id=1185106 https://bugzilla.mozilla.org/show_bug.cgi?id=1185106 Kangax's tables, linked in another reply, are a great way to check what the support situation is like across browsers.