- 5
answer this question
Fill in the blanks to obtain the name of the user and alert it to the screen: var name = ("Enter your name:"); alert( );
7 Respostas
+ 26
var name = prompt("Enter your name:");
alert(name);
+ 4
var name=prompt(“Enter your name”);
alert(“Hello,”+name+” Welcome to SoloLearn”);
Eg. I thing you should make this question in quiz factory.
+ 3
var name= prompt("Enter name")
alert("This question makes no sense and the right answer is wrong");
0
answer this question
Fill in the blanks to obtain the name of the user and alert it to the screen:
var name = prompt
("Enter your name:");
alert(name);
0
Please fill in the corresponding names for the built-in dialog boxes:
........is for getting input from the user;
......... is for displaying a message in a box;
0
var name =
prompt
("Enter your name:");
alert(
name
);
- 3
No