“Knoten Js erhalten Eingabe von der Konsole” Code-Antworten

Eingabe in Knoten Js

const readline = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});
 
readline.question('who are you: ', name => {
	console.log(`hello, hi there ${name}`);
	readline.close();
})
Poised Panda

Holen Sie sich in terminalen NodeJs Eingaben

const readline = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});

readline.question('Who are you?', name => {
  console.log(`Hey there ${name}!`);
  readline.close();
});
Different Dunlin

Benutzereingaben im Knoten JS erhalten

//Make sure you have Node and NPM installed
//Run "npm install prompt-sync" in the terminal
const prompt = require('prompt-sync')();

const name = prompt('What is your name?');
console.log(`Hey there ${name}`);
Blushing Beetle

So nehmen Sie Eingaben von User NodeJS an

const prompt = require("prompt-sync")();

const input = prompt("What is your name? ");

console.log(`Oh, so your name is ${input}`);
Clever Crossbill

Knoten Js erhalten Eingabe von der Konsole

--------------- easiest method I found---------------------------
  
Run npm install prompt-sync in the terminal
const prompt = require('prompt-sync')();

var name = prompt('what is your name?');

console.log(name);

--------------------------------------------------------------
Kriss Sachintha

NodeJS -Benutzereingabe

// Importing the module
const readline = require("readline-sync");
  
// Enter the number
let a = Number(readline.question());
let number = [];
for (let i = 0; i < a; ++i) {
  number.push(Number(readline.question()));
}
console.log(number);
Delightful Dolphin

Ähnliche Antworten wie “Knoten Js erhalten Eingabe von der Konsole”

Fragen ähnlich wie “Knoten Js erhalten Eingabe von der Konsole”

Weitere verwandte Antworten zu “Knoten Js erhalten Eingabe von der Konsole” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen