How do you write "Hello World" in an alert box?
-
alert("Hello World")
-
alertBox="Hello World"
-
alertBox("Hello World")
-
msgBox("Hello World")
A
Correct answer
Explanation
To display text in an alert box, use alert("Hello World"). The alert() function is a built-in JavaScript method that shows a popup dialog. alertBox is not a valid JavaScript object or function.