Does Nintex support ECMA6 yet? Is there a timeline for when they will?
ECMA standards are supported not by the websites that are served up inside of browsers, but by the browsers themselves.
For a list of which browsers support what (in terms of ECMA 6) please see: ECMAScript 6 compatibility table
If you're looking at MDN to learn what a specific JavaScript function does, you can also find whether or not it'll work for the browser that you're targeting by scrolling down to the bottom Browser Compatibility Table
Ex: Array.prototype.filter() - JavaScript | MDN
Additionally, this is also the case for CSS standard support. You can find if a particular CSS tag / function is supported by your browser at https://caniuse.com/
*Edit* I suppose that I should add that while there are all sorts of neat little additions to the newest standard. I can't think of too much that can't be done in the older version. If there is something in particular in the new version that you'd like the use, the exception being the syntactical sugar like fat arrows (=>) for functions, I'm sure we can figure out a way to accomplish it.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.