Answer:
(a) alert("Some text");
Step-by-step explanation:
Required
Determine the code for alert box.
In JavaScript, the syntax is:
1. window.alert("sometext");
or
2. alert("sometext");
From the given options, option (a) shows syntax 2 while other options are inappropriate