Is is possible to create JavaScript application that runs on command Line or terminal (NO CONSOLE) without any browser or using any .html file. You can execute this file from command line.
I want to create a simple calculator that ask for first number, then second number and then operation.
Demo how it should look in terminal (NOT CONSOLE) ?
Enter 1st number: 10
Enter 2nd number : 30
Enter operation : +
Result : 40
If yes, any one please guide me through?