Request data with prompt in JavaScript

by Janeth Kent Date: 01-06-2021 javascript

After having published several articles about how to manipulate arrays and dates, today I will publish a post that some of you will find too basic and others will find it useful to get you started in the world of JavaScript programming. So, let them be read to the taste of the consumer. Let's start with something simple: knowing how to request data with prompt to the user in JavaScript. In other words, if I'm making a web page, how can I request data from the user.

It is true that possibly the best way is to insert a form with the fields so that the user can insert his answer. But it is true that in a didactic way it is easy to use a pop-up window or prompt in which the user can insert data.

In order to implement the example of how to ask for data with a prompt, we are going to make an example that asks the user for two numbers and returns the result by console. The first thing is to know the syntax of the .prompt() method.

 
result = window.prompt(message, default);
 

We can see that in the first field we put a message to be shown to the user to request the information and that the second parameter is the default value that we want to give to the user. It is important to understand that this value is the value that will appear in the dialogue box and that if the user deletes it, it will not be assigned as the default value. We can see that the result of invoking the .prompt() method is assigned to a variable.

So if we want to ask the user for a pair of numbers we will have the following.

 
let value1 = prompt("Give me value 1",0);  
let value2 = prompt("Give me value 2",0);
 

This will cause our browser to display something similar to the following:


 

It seems simple enough and does not take us any further. But there are a couple of considerations to bear in mind. The first is that the content returned by the .prompt() method is a string. You can check this by doing a .typeof() on its result.

 
console.log("The prompt content is of the type: " + typeof(value1));
 

That is why if we want to add the values as if they were numbers we must convert them to integers with the .parseInt() method.

 
let sumvalues = parseInt(value1) + parseInt(value2);
There is a second point to consider. Although we have seen that the second parameter of the .prompt() method allows us to give a default value, the user can delete it and leave the content as empty. So it will be good to perform some additional control of its content, especially if we expect it to be a number and we want to add them up.

So we could have something like this:

 
value1 = (value1=="")?"0":value1;  value2 = (value2=="")?"0":value2;
 

With this we will have learned everything we needed to know about how to request data with prompt in JavaScript.

 
by Janeth Kent Date: 01-06-2021 javascript hits : 2868  
 
Janeth Kent

Janeth Kent

Licenciada en Bellas Artes y programadora por pasión. Cuando tengo un rato retoco fotos, edito vídeos y diseño cosas. El resto del tiempo escribo en MA-NO WEB DESIGN AND DEVELOPMENT.

 
 
 

Related Posts

How to upload files to the server using JavaScript

In this tutorial we are going to see how you can upload files to a server using Node.js using JavaScript, which is very common. For example, you might want to…

How to combine multiple objects in JavaScript

In JavaScript you can merge multiple objects in a variety of ways. The most commonly used methods are the spread operator ... and the Object.assign() function.   How to copy objects with…

The Payment Request API: Revolutionizing Online Payments (Part 2)

In the first part of this series, we explored the fundamentals of the Payment Request API and how it simplifies the payment experience. Now, let's delve deeper into advanced features…

The Payment Request API: Revolutionizing Online Payments (Part 1)

The Payment Request API has emerged as the new standard for online payments, transforming the way transactions are conducted on the internet. In this two-part series, we will delve into…

Let's create a Color Picker from scratch with HTML5 Canvas, Javascript and CSS3

HTML5 Canvas is a technology that allows developers to generate real-time graphics and animations using JavaScript. It provides a blank canvas on which graphical elements, such as lines, shapes, images…

How do you stop JavaScript execution for a while: sleep()

A sleep()function is a function that allows you to stop the execution of code for a certain amount of time. Using a function similar to this can be interesting for…

Mastering array sorting in JavaScript: a guide to the sort() function

In this article, I will explain the usage and potential of the sort() function in JavaScript.   What does the sort() function do?   The sort() function allows you to sort the elements of…

Infinite scrolling with native JavaScript using the Fetch API

I have long wanted to talk about how infinite scroll functionality can be implemented in a list of items that might be on any Web page. Infinite scroll is a technique…

Sorting elements with SortableJS and storing them in localStorage

SortableJS is a JavaScript extension that you will be able to use in your developments to offer your users the possibility to drag and drop elements in order to change…

What is a JWT token and how does it work?

JWT tokens are a standard used to create application access tokens, enabling user authentication in web applications. Specifically, it follows the RFC 7519 standard. What is a JWT token A JWT token…

Template Literals in JavaScript

Template literals, also known as template literals, appeared in JavaScript in its ES6 version, providing a new method of declaring strings using inverted quotes, offering several new and improved possibilities. About…

How to use the endsWith method in JavaScript

In this short tutorial, we are going to see what the endsWith method, introduced in JavaScript ES6, is and how it is used with strings in JavaScript. The endsWith method is…

Clicky