Valid Web-Development-Applications Dumps shared by ExamDiscuss.com for Helping Passing Web-Development-Applications Exam! ExamDiscuss.com now offer the newest Web-Development-Applications exam dumps, the ExamDiscuss.com Web-Development-Applications exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Web-Development-Applications dumps with Test Engine here:
Which method allows the end user to enter text as an answer to a question as the page loads?
Correct Answer: C
Thepromptmethod in JavaScript displays a dialog box that prompts the user for input, allowing the end user to enter text as an answer to a question when the page loads. * promptMethod: Thepromptmethod displays a dialog box with an optional message prompting the user to input some text. It returns the text entered by the user ornullif the user cancels the dialog. * Usage Example: let userInput = prompt("Please enter your name:", "Harry Potter"); console.log(userInput); In this example, a prompt dialog asks the user to enter their name, and the entered text is logged to the console. : MDN Web Docs onprompt W3C HTML Specification on Dialogs