How may i take input in js ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How may i take input in js ?

I am unable to take input from user directly using prompt() function in my vs code ? I have downloaded all things like node js and npm . But i have to use Const prompt = require("prompt sync") ({sigiint: true}) ; May i use it without it and how ?

21st Sep 2022, 5:12 PM
Abhay mishra
Abhay mishra - avatar
2 Answers
+ 5
JavaScript input In the browser you can use prompt() or read input from various form controls. Reading from forms is usually triggered by an onclick event from a button. However, an onchange event can also be used. If you are using JavaScript outside the browser then... Node.js has it's own way of doing things using the readline package. JScript (Windows Script Host) has the WScript.StdIn object when run in console mode. The SpiderMonkey JavaScript Engine has a readline() function to read a line of input from stdin. The Nashorn JavaScript engine provides a readLine() function to read a line of input from stdin, or can use a Java class to read console input. The Rhino JavaScript Engine can call Java so it has access to all of the Java input methods. /Martin Taylor/ https://www.w3schools.com/js/js_input_examples.asp
21st Sep 2022, 5:37 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 3
website or console?
22nd Sep 2022, 5:51 AM
Gordon
Gordon - avatar