Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4.  
  5.  
  6. console.log(`What's your age?`)
  7. process.stdin.on('data', (number) => {
  8. number = parseInt(number, 10);
  9. if (number === NaN){
  10. console.log("Please enter your age with only numbers")
  11. } if else (number >99) {
  12. console.log("Are you really this old?")
  13. } if else (number <1 ) {
  14. console.log("Are you really this young?")
  15. }else {
  16. console.log("Your birth year is " +( 2019 - number))
  17. }
  18. process.exit()
  19. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement