how to get inputs in nodejjs code example

Example 1: input in node 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();
})

Example 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();});

Example 3: get input from user in nodejs

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