Which Javascript Version is currently the most used?
There are 12 ECMASCRIPT versions, yet people mention only ES5, ES6 or ES7. Why?
Which ECMA version should I aim for?
What are the version numbers of JavaScript and what ECMAScript version do they correspond to? - Stack Overflow
I am learning JavaScript for web development and was wondering which JS Version (I mean ES5,ES6 etc.) is most commonly used to code JS for Chrome and Firefox.
Out of all the JS versions,ES6 is the mostly mentioned one in google trends. Which is odd because ES5 seemed to be the standard for 6 years before ECMA2015. And ES7 added async / await which is pretty big. Everything after ES7 is almost unheard of.
Is there a reason why ES6 is such a big deal as opposed to ES7 or ES10?
title
The new versions seem to add a lot of cool shit, but are they supported on modern browsers? What should I aim for? For context I'm just a beginner trying to make stuff :)
According to Wikipedia, the JavaScript-specific version numbers were only used by Firefox, and were dropped in Firefox 4.
These days, there's not really such thing as 'the current version of JavaScript' - the ECMAScript standards get created, and the browser vendors implement the features into their JS engines at their own pace. This pace varies wildly - as demonstrated by the very useful Kangax compatibility table.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/New_in_JavaScript#JavaScript_versions:
Deprecated. The explicit versioning and opt-in of language features was Mozilla-specific and is in process of being removed. Firefox 4 was the last version which referred to an JavaScript version (1.8.5). With new ECMA standards, JavaScript language features are now often mentioned with their initial definition in ECMA-262 Editions such as ECMAScript 2015.
Starting with Firefox 5, changes in JavaScript are listed at https://developer.mozilla.org/en-US/docs/Web/JavaScript/New_in_JavaScript/Firefox_JavaScript_changelog, but not versioned otherwise.
See the lists at ECMAScript 2015 support in Mozilla and ECMAScript Next support in Mozilla for which features are available in which version of Firefox.