“Readline Sync JavaScript” Code-Antworten

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 + '!');
Chris P bacon

Readline -Synchronisierungsfrage

var readlineSync = require('readline-sync'),  animals = ['Lion', 'Elephant', 'Crocodile', 'Giraffe', 'Hippo'],  index = readlineSync.keyInSelect(animals, 'Which animal?');console.log('Ok, ' + animals[index] + ' goes to your room.');
Strange Starling

Readline -Synchronisierungsfrage

[1] Lion[2] Elephant[3] Crocodile[4] Giraffe[5] Hippo[0] CANCEL Which animal? [1...5 / 0]: 2Ok, Elephant goes to your room.
Strange Starling

Ähnliche Antworten wie “Readline Sync JavaScript”

Fragen ähnlich wie “Readline Sync JavaScript”

Weitere verwandte Antworten zu “Readline Sync JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen