Java Script - Array In Js
Questions No: 1/7

which JavaScript function is used to access the element by its id
किस जावास्क्रिप्ट फ़ंक्शन का उपयोग एलिमेंट को उसकी आईडी द्वारा एक्सेस करने के लिए किया जाता है

Questions No: 2/7

What is the output of the following JavaScript code?

<script>
var a;
document.getElementByld("demo").innerHTML = a+1;
</script>

Questions No: 3/7

What is the correct way to write a JavaScript array?
जावास्क्रिप्ट ऐरे लिखने का सही तरीका क्या है?

Questions No: 4/7

Which method is used to remove the last element from an array in JavaScript?
जावास्क्रिप्ट में किसी सरणी से अंतिम तत्व को हटाने के लिए किस विधि का उपयोग किया जाता है?

Questions No: 5/7

How can you add a new element to the end of an array?
आप किसी सरणी के अंत में एक नया तत्व कैसे जोड़ सकते हैं?

Questions No: 6/7

Which of the following statements define Arrays in JavaScript?
निम्नलिखित में से कौन सा कथन जावास्क्रिप्ट में ऐरे को परिभाषित करता है?

Questions No: 7/7

What will be the output of the following JavaScript code ?

<p id="demo"></p>
<script>
var js = 5;
js*=10;
document.getElementByld("demo").innerHTML = js;
</script>