how to take input at once in javascript code example
Example: 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);
In JavaScript, we can get user input like this:
var name = window.prompt("Enter your name: ");
alert("Your name is " + name);