Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('How old are you ? ');
  5. process.stdin.on('data', (number) => {
  6. if (number > 99 || number <= 0) {
  7. console.log('You lie!', 'How old are you really ?');
  8. } else if (number < 100) {
  9. yearOfbirth = 2019 - number;
  10. console.log(`You are born in ${yearOfbirth}.`)
  11. process.exit()
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement