31 Which of following statement indicates the
method in Javascript?
document, write ("Hello students")
Answers
Answered by
2
Answer:
" Hello Students "
"Hello Students "
Answered by
0
Answer:document.write('Hello, World!');
Explanation:
Console.log() is used in debugging the code
The alert() method displays an alert box over the current window with the specified message.
document.write() is used when you want to print the content to the HTML document.
document.write('Hello, World!');
Similar questions