“Wejście w węźle JS” Kod odpowiedzi

Wejście w węźle 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

Uzyskanie danych wejściowych użytkownika w węźle JS

//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

Jak przyjmować dane wejściowe z NodeJS użytkownika

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

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

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

Węzeł JS otrzymuje dane wejściowe z konsoli

--------------- 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

Odpowiedzi podobne do “Wejście w węźle JS”

Pytania podobne do “Wejście w węźle JS”

Więcej pokrewnych odpowiedzi na “Wejście w węźle JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu