Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

readline sync javascript

var readlineSync = require('readline-sync'); // Wait for user's response.
var userName = readlineSync.question('May I have your name? ');
console.log('Hi ' + userName + '!');

// Handle the secret text (e.g. password).
var favFood = readlineSync.question('What is your favorite food? ', {
	hideEchoBack: true // The typed text on screen is hidden by `*` (default).
});
console.log('Oh, ' + userName + ' loves ' + favFood + '!');
Source by www.npmjs.com #
 
PREVIOUS NEXT
Tagged: #readline #sync #javascript
ADD COMMENT
Topic
Name
3+8 =