read input in javascript code example
Example 1: how to ask input in javascript
let name=prompt("What is your name?");
console.log("Hi "+name)
Example 2: 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);