Multiple choice technology

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

  1. ("Hello World")

  2. "Hello World"

  3. document.write("Hello World")

  4. response.write("Hello World")

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

JavaScript uses document.write() to output text to an HTML document. Options A and B are just string expressions without any output method.