0
what is "document" in the following code var x=10; document.write(x)
Is document is a class in javascript?
2 Answers
+ 1
document is an object. Classes are more likely to create similar objects (write is. a method of the document object).
Is document is a class in javascript?