Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
103
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. console.log('How old are you ? ')
  5. process.stdin.on('data', (age) => {
  6. date = 2019 - age;
  7. if (age < 99 && age > 0) {
  8. console.log(date)
  9. } else if (typeof age !== 'number') { console.log('age invalid') } else { console.log('what are you typing here ??') }
  10.  
  11. process.exit()
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement