Answers for "node console read"

0

node terminal readline console

before executing the command node in terminal you have to install
  :~$ npm install prompt-sync
if you havent already.
then inside node
  >const prompt = require('prompt-sync')();
  >name = prompt('What is your name? '); michael
  >console.log(`Hey there ${name}`);
Hey there michael
Posted by: Guest on August-29-2021
-2

user input node javascript

const readline = require('readline').createInterface({  input: process.stdin,  output: process.stdout}); readline.question('Who are you?', name => {  console.log(`Hey there ${name}!`);  readline.close();});
Posted by: Guest on December-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language