Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('What\'s your age ? ')
  5. process.stdin.on('data', (age) => {
  6. if(isNaN(age)==true)
  7. {
  8. console.log("This is not an age!")
  9. } else{
  10. if(age>99 || age==0)
  11. {
  12. console.log("Your age must be less than 99 and greater than 0")
  13. }
  14. else{
  15. console.log('You were born in ' + (2019 - age))
  16. }
  17.  
  18. }
  19.  
  20. process.exit()
  21. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement