Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. const readline = require('readline');
  2.  
  3. const rl = readline.createInterface({
  4. input: process.stdin,
  5. output: process.stdout
  6. });
  7.  
  8. rl.question('What do you think of Node.js? ', (answer) => {
  9. // TODO: Log the answer in a database
  10. console.log('Thank you for your valuable feedback: ${answer}');
  11.  
  12. rl.close();
  13. });
  14. console.log('came here');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement