जावास्क्रिप्ट में कांस्टेंट डिक्लेअर करने के लिए सही वाक्यविन्यास कौन सा है?<break-line><break-line>Which is the correct syntax to declare a constant in JavaScript?
कौन सा कथन जावास्क्रिप्ट में var और Let कीवर्ड के बीच सही अंतर निर्दिष्ट करता है?<break-line><break-line>Which statement specify correct difference between var and let keywords in JavaScript?
A.var defines a variable while let defines a constant.
B.There is no such major difference between them.
C.The value of a variable declared with var can be changed while the value of a variable declared with let cannot be changed.
D.var defined function scoped variable while let define block scoped variable.
निम्नलिखित जावास्क्रिप्ट कोड का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following JavaScript code?<pre><code><p id="demo"></p>
<script>
var js = 10;
js *= 5;
document.getElementById("demo").innerHTML = js;
</script></code></pre>