VOOZH about

URL: https://www.geeksforgeeks.org/javascript/javascript-course-interaction-with-user/

⇱ JavaScript Course Interaction With User - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaScript Course Interaction With User

Last Updated : 11 Jul, 2025

Javascript allows us the privilege to which we can interact with the user and respond accordingly. It includes several user-interface functions which help in the interaction. Let's take a look at them one by one.

JavaScript Window alert() Method : It simply creates an alert box that may or may not have specified content inside it, but it always comes with the 'OK' button. It simply shows a message and pauses the execution of the script until you press the 'OK' button. The mini-window that pops up is called the 'modal window'.

alert('text');

Example:

Output: It can be used for debugging or simply for popping something to the user.

👁 Image

JavaScript Window prompt() Method: Prompt is another user-interface function that normally contains two arguments.

prompt('text', default value);

The text is basically what you want to show the user and the default value argument is optional though it acts like a placeholder inside a text field. It is the most used interface as with it you can ask the user to input something and then use that input to build something.

Example: With default parameter.

Output:

👁 Image

You can enter anything and it will print that, it doesn't necessarily have to be a number. Without the default value, you have to enter something in the text field otherwise it will print a blank space simply.

Example:

Output:

👁 Image

JavaScript Window confirm() Method: The confirm function basically outputs a modal window with a question and two buttons 'OK' and 'CANCEL'.

confirm('question');

Example:

Output:

👁 Image

It will print true or false based on your choice of clicking the 'OK' button or 'CANCEL' button respectively.

Comment