User input | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

User input

How can we take user input in JavaScript

7th Jul 2020, 6:06 PM
Some Name
Some Name - avatar
3 Answers
+ 8
InĀ JavaScript, we can get userĀ inputĀ like this: var name = window. prompt("Enter your name: "); alert("Your name is " + name); The code above simply prompts the user for information, and the prints out what they entered in. Hope it was clear :)
7th Jul 2020, 6:19 PM
Aditya
Aditya - avatar
7th Jul 2020, 6:21 PM
Aditya
Aditya - avatar
+ 3
Aditya Thank ušŸ˜Š
7th Jul 2020, 6:20 PM
Some Name
Some Name - avatar