Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 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.  
  7. if (age >= 99) {
  8. console.log("Enter a number under 100 plizzz.")
  9.  
  10. } else if (isNaN(age)) {
  11. console.log("Enter a number plizzz.")
  12.  
  13. } else {
  14. console.log('You are born in ' + (2019 - age) + '.')
  15. process.exit()
  16. }
  17. // process.exit()
  18. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement