प्रोग्राम का आउटपुट दीजिए<break-line><break-line>Give the output of the program<pre><code><html>
<body>
<script>
var number = 50; //global variable
function a() {
alert(number);
}
function b() {
alert(number);
}
a();
</script>
</body>
</html></code></pre>
निम्नलिखित में से कौन सा कथन जावास्क्रिप्ट में Arrays को परिभाषित करता है?<break-line><break-line>Which of the following statements define Arrays in JavaScript?
निम्नलिखित जावास्क्रिप्ट कोड का आउटपुट क्या है?<break-line><break-line>What is the output of the following JavaScript code?<pre><code><script>
var a;
document.getElementById("demo").innerHTML = a + 1;
</script></code></pre>