0
How/can I make the user change the value of var in javascript
2 Respostas
+ 1
In which language?
+ 1
Generic answer is by accepting input from the user at standard input. Each language does it a little differently. Python uses an input function. Java uses System.in. C++ uses std::cin. Each one has quirks about how to get the right kind of input.