Qus : For displaying data in JavaScript, we can’t use _
Qus जावास्क्रिप्ट में डेटा प्रदर्शित करने के लिए, हम _ का उपयोग नहीं कर सकते
A. document. write() B. console.log()
C. innerHTML D. document.getElementById()
Solution
D. document.getElementById()
Explanation
he document.getElementById() method is used to access an element by its ID, not for displaying data. The other options, document.write(), console.log(), and innerHTML, can be used to display data in various ways.