how to change the javascript version in firefox browser












-1















help -> about firefox shows firefox version 63.0(32 bit)



but my javascript version shows 1.5



http://jsfiddle.net/Ac6CT/



<script type="text/javascript">
var jsver = 1.0;
</script>
<script language="Javascript1.1">
jsver = 1.1;
</script>
<script language="Javascript1.2">
jsver = 1.2;
</script>
<script language="Javascript1.3">
jsver = 1.3;
</script>
<script language="Javascript1.4">
jsver = 1.4;
</script>
<script language="Javascript1.5">
jsver = 1.5;
</script>
<script language="Javascript1.6">
jsver = 1.6;
</script>
<script language="Javascript1.7">
jsver = 1.7;
</script>
<script language="Javascript1.8">
jsver = 1.8;
</script>
<script language="Javascript1.9">
jsver = 1.9;
</script>


<script type="text/javascript">
alert(jsver);
</script>


I want to use the latest javascript version.










share|improve this question


















  • 1





    the language attribute on a script element is deprecated - so your code is flawed - javascript on Mozilla supports 98% of ES6, 100% of ES2016, most of ES2017 and 2018

    – Bravo
    Nov 21 '18 at 5:19
















-1















help -> about firefox shows firefox version 63.0(32 bit)



but my javascript version shows 1.5



http://jsfiddle.net/Ac6CT/



<script type="text/javascript">
var jsver = 1.0;
</script>
<script language="Javascript1.1">
jsver = 1.1;
</script>
<script language="Javascript1.2">
jsver = 1.2;
</script>
<script language="Javascript1.3">
jsver = 1.3;
</script>
<script language="Javascript1.4">
jsver = 1.4;
</script>
<script language="Javascript1.5">
jsver = 1.5;
</script>
<script language="Javascript1.6">
jsver = 1.6;
</script>
<script language="Javascript1.7">
jsver = 1.7;
</script>
<script language="Javascript1.8">
jsver = 1.8;
</script>
<script language="Javascript1.9">
jsver = 1.9;
</script>


<script type="text/javascript">
alert(jsver);
</script>


I want to use the latest javascript version.










share|improve this question


















  • 1





    the language attribute on a script element is deprecated - so your code is flawed - javascript on Mozilla supports 98% of ES6, 100% of ES2016, most of ES2017 and 2018

    – Bravo
    Nov 21 '18 at 5:19














-1












-1








-1


0






help -> about firefox shows firefox version 63.0(32 bit)



but my javascript version shows 1.5



http://jsfiddle.net/Ac6CT/



<script type="text/javascript">
var jsver = 1.0;
</script>
<script language="Javascript1.1">
jsver = 1.1;
</script>
<script language="Javascript1.2">
jsver = 1.2;
</script>
<script language="Javascript1.3">
jsver = 1.3;
</script>
<script language="Javascript1.4">
jsver = 1.4;
</script>
<script language="Javascript1.5">
jsver = 1.5;
</script>
<script language="Javascript1.6">
jsver = 1.6;
</script>
<script language="Javascript1.7">
jsver = 1.7;
</script>
<script language="Javascript1.8">
jsver = 1.8;
</script>
<script language="Javascript1.9">
jsver = 1.9;
</script>


<script type="text/javascript">
alert(jsver);
</script>


I want to use the latest javascript version.










share|improve this question














help -> about firefox shows firefox version 63.0(32 bit)



but my javascript version shows 1.5



http://jsfiddle.net/Ac6CT/



<script type="text/javascript">
var jsver = 1.0;
</script>
<script language="Javascript1.1">
jsver = 1.1;
</script>
<script language="Javascript1.2">
jsver = 1.2;
</script>
<script language="Javascript1.3">
jsver = 1.3;
</script>
<script language="Javascript1.4">
jsver = 1.4;
</script>
<script language="Javascript1.5">
jsver = 1.5;
</script>
<script language="Javascript1.6">
jsver = 1.6;
</script>
<script language="Javascript1.7">
jsver = 1.7;
</script>
<script language="Javascript1.8">
jsver = 1.8;
</script>
<script language="Javascript1.9">
jsver = 1.9;
</script>


<script type="text/javascript">
alert(jsver);
</script>


I want to use the latest javascript version.







javascript






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 '18 at 5:11









Sugumar VenkatesanSugumar Venkatesan

2,04921332




2,04921332








  • 1





    the language attribute on a script element is deprecated - so your code is flawed - javascript on Mozilla supports 98% of ES6, 100% of ES2016, most of ES2017 and 2018

    – Bravo
    Nov 21 '18 at 5:19














  • 1





    the language attribute on a script element is deprecated - so your code is flawed - javascript on Mozilla supports 98% of ES6, 100% of ES2016, most of ES2017 and 2018

    – Bravo
    Nov 21 '18 at 5:19








1




1





the language attribute on a script element is deprecated - so your code is flawed - javascript on Mozilla supports 98% of ES6, 100% of ES2016, most of ES2017 and 2018

– Bravo
Nov 21 '18 at 5:19





the language attribute on a script element is deprecated - so your code is flawed - javascript on Mozilla supports 98% of ES6, 100% of ES2016, most of ES2017 and 2018

– Bravo
Nov 21 '18 at 5:19












1 Answer
1






active

oldest

votes


















3














I assume you read one of the answers over here: stackoverflow.com/questions/4271566, since it matches your code exactly. That answer is 8 years old and out of date. Seeing "1.5" is the expected behavior in the latest version of Firefox.



You can prove this by using a newer feature. For example,



const x = 5
x --> 5


The const feature was added since "Javascript 1.5," so this serves as evidence for my above claim.






share|improve this answer
























  • yes i can use let also, but want to know the version

    – Sugumar Venkatesan
    Nov 21 '18 at 5:21






  • 1





    You should not rely on the version number, and instead try to determine whether a specific feature is available. This is because browsers don't always implement every feature, even if they implement most.

    – Ezekiel Elin
    Nov 21 '18 at 5:25











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405600%2fhow-to-change-the-javascript-version-in-firefox-browser%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









3














I assume you read one of the answers over here: stackoverflow.com/questions/4271566, since it matches your code exactly. That answer is 8 years old and out of date. Seeing "1.5" is the expected behavior in the latest version of Firefox.



You can prove this by using a newer feature. For example,



const x = 5
x --> 5


The const feature was added since "Javascript 1.5," so this serves as evidence for my above claim.






share|improve this answer
























  • yes i can use let also, but want to know the version

    – Sugumar Venkatesan
    Nov 21 '18 at 5:21






  • 1





    You should not rely on the version number, and instead try to determine whether a specific feature is available. This is because browsers don't always implement every feature, even if they implement most.

    – Ezekiel Elin
    Nov 21 '18 at 5:25
















3














I assume you read one of the answers over here: stackoverflow.com/questions/4271566, since it matches your code exactly. That answer is 8 years old and out of date. Seeing "1.5" is the expected behavior in the latest version of Firefox.



You can prove this by using a newer feature. For example,



const x = 5
x --> 5


The const feature was added since "Javascript 1.5," so this serves as evidence for my above claim.






share|improve this answer
























  • yes i can use let also, but want to know the version

    – Sugumar Venkatesan
    Nov 21 '18 at 5:21






  • 1





    You should not rely on the version number, and instead try to determine whether a specific feature is available. This is because browsers don't always implement every feature, even if they implement most.

    – Ezekiel Elin
    Nov 21 '18 at 5:25














3












3








3







I assume you read one of the answers over here: stackoverflow.com/questions/4271566, since it matches your code exactly. That answer is 8 years old and out of date. Seeing "1.5" is the expected behavior in the latest version of Firefox.



You can prove this by using a newer feature. For example,



const x = 5
x --> 5


The const feature was added since "Javascript 1.5," so this serves as evidence for my above claim.






share|improve this answer













I assume you read one of the answers over here: stackoverflow.com/questions/4271566, since it matches your code exactly. That answer is 8 years old and out of date. Seeing "1.5" is the expected behavior in the latest version of Firefox.



You can prove this by using a newer feature. For example,



const x = 5
x --> 5


The const feature was added since "Javascript 1.5," so this serves as evidence for my above claim.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 21 '18 at 5:18









Ezekiel ElinEzekiel Elin

1,58221119




1,58221119













  • yes i can use let also, but want to know the version

    – Sugumar Venkatesan
    Nov 21 '18 at 5:21






  • 1





    You should not rely on the version number, and instead try to determine whether a specific feature is available. This is because browsers don't always implement every feature, even if they implement most.

    – Ezekiel Elin
    Nov 21 '18 at 5:25



















  • yes i can use let also, but want to know the version

    – Sugumar Venkatesan
    Nov 21 '18 at 5:21






  • 1





    You should not rely on the version number, and instead try to determine whether a specific feature is available. This is because browsers don't always implement every feature, even if they implement most.

    – Ezekiel Elin
    Nov 21 '18 at 5:25

















yes i can use let also, but want to know the version

– Sugumar Venkatesan
Nov 21 '18 at 5:21





yes i can use let also, but want to know the version

– Sugumar Venkatesan
Nov 21 '18 at 5:21




1




1





You should not rely on the version number, and instead try to determine whether a specific feature is available. This is because browsers don't always implement every feature, even if they implement most.

– Ezekiel Elin
Nov 21 '18 at 5:25





You should not rely on the version number, and instead try to determine whether a specific feature is available. This is because browsers don't always implement every feature, even if they implement most.

– Ezekiel Elin
Nov 21 '18 at 5:25


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53405600%2fhow-to-change-the-javascript-version-in-firefox-browser%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

How to fix TextFormField cause rebuild widget in Flutter

Npm cannot find a required file even through it is in the searched directory