we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "javascript read input from terminal"
Yasmina
24 Apr 2020
1const readline = require('readline').createInterface({
2  input: process.stdin,
3  output: process.stdout
4});
5 
6readline.question('Who are you?', name => {
7  console.log(`Hey there ${name}!`);
8  readline.close();
9});