Displays a native browser prompt dialog, asking the user for input.
The message/question to display
Optional
An optional default value for the input field
The text entered by the user, or null if cancelled
const name = prompt('What is your name?', 'Guest'); Copy
const name = prompt('What is your name?', 'Guest');
Displays a native browser prompt dialog, asking the user for input.