how to take in input with promp and save the input javascript code example
Example 1: how to take input in javascript in coding
In JavaScript, we can get user input like this:
var name = window.prompt("Enter your name: ");
alert("Your name is " + name);
Example 2: how to get a user input in js
Copyvar name = window.prompt("Enter your name: ");
alert("Your name is " + name);