Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. process.stdin.resume();
  2. process.stdin.setEncoding('utf8');
  3.  
  4. process.stdout.write('How old are u?');
  5.  
  6. process.stdin.on('data', (int) => {
  7. actualYear=new Date().getFullYear();
  8. if (int<100){process.stdout.write(`You were born in ${int-actualYear} !`)}
  9. else {process.stdout.write('Please retry it without error')}
  10. process.exit()
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement