Multiple choice technology web technology

What is the correct JavaScript syntax to write "Hello World"?

  1. ("Hello World")

  2. document.write("Hello World")

  3. response.write("Hello World")

  4. "Hello World"

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

To write text to a webpage in JavaScript, you use document.write() which outputs content to the document. Option A is just a string literal, option C uses response.write() which is server-side, and option D is just a string without writing it to the document.