As the new JavaScript ES6 is launched. I am trying to know how do I specify the version.
Suppose, if I want to use HTML5, I declare at the top of the html page
<!DOCTYPE HTML>
Similarly, if I think to use jQuery then I do use jQuery 2.1.4 or any I do it the src pointing to below url
.1.4/jquery.min.js
This is how we write js in html.
<script type="text/javascript">
//js
</script>
or
<script type="text/javascript" src="external.js"> </script>
How do I specify that version ES6 should be used for the script, in case it is not supported by browser, fall back to ES5.
As the new JavaScript ES6 is launched. I am trying to know how do I specify the version.
Suppose, if I want to use HTML5, I declare at the top of the html page
<!DOCTYPE HTML>
Similarly, if I think to use jQuery then I do use jQuery 2.1.4 or any I do it the src pointing to below url
https://cdnjs.cloudflare./ajax/libs/jquery/2.1.4/jquery.min.js
This is how we write js in html.
<script type="text/javascript">
//js
</script>
or
<script type="text/javascript" src="external.js"> </script>
How do I specify that version ES6 should be used for the script, in case it is not supported by browser, fall back to ES5.
Share Improve this question edited Jan 13, 2017 at 6:28 1.21 gigawatts 17.9k40 gold badges145 silver badges273 bronze badges asked May 14, 2016 at 7:23 Kgn-webKgn-web 7,58531 gold badges105 silver badges176 bronze badges 15- I don't think the browsers will have two versions of the JavaScript interpreter on board; they'll only use the one. So if you want to use ES6, you will have to check from within JavaScript. – Mr Lister Commented May 14, 2016 at 7:27
- 1 @MrLister, okay..thats fine. but how do I specify the version number to be used in the script. Suppose, I want to use the new features of ES6, & I want the browser to use ES6, if they donot support thats fine to me – Kgn-web Commented May 14, 2016 at 7:28
- I'm afraid you will have to check from within a JavaScript routine to see what the browser is capable of. – Mr Lister Commented May 14, 2016 at 7:29
- Hey, who is downvoting this? It's a very good question, and on topic. – Mr Lister Commented May 14, 2016 at 7:30
- @MrLister..even I am surprise who has downvoted, but thats not an issue. – Kgn-web Commented May 14, 2016 at 7:31
2 Answers
Reset to default 6As others have said: The browser will use whatever JavaScript engine it has built in ... be that 3, 5 or some version of 6.
While there used to be a way to specify a version of JavaScript using the lang
parameter, that has been obsolete for at least 10 years, and only mattered for JavaScript versions 1 and 2, which behaved quite differently.
If you need to make sure that your code runs on an older JavaScript engine, you must use a transpiler, such as Babel. The resultant code will run on ES3, ES5 or 6.
Your other options are:
- Write ES6 code and where it runs, it runs. Where it doesn't -- oh well.
- Write ES5 code and run it everywhere. (Well, everywhere modern.)
One way to use different versions of your script is to load them depending on what features are present. Say, the hypot
function in the Math library.
For instance with jQuery:
if (typeof Math.hypot == "undefined") // Is hypot defined?
$.getScript('old_routines.js'); // No, load old library
else
$.getScript('new_routines.js'); // Yes, assume ES6 and load new library