Guest User

Untitled

a guest
Apr 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 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', function(myAge) {
  6.  
  7. if (isNaN(Number(myAge))) {
  8. console.log(myAge + ' is not a number ..');
  9.  
  10. } else if ( myAge > 99 ) {
  11. console.log( 'You are too old !!' )
  12.  
  13. } else if ( ( myAge < 99 ) && ( myAge > 0) ) {
  14. var year = new Date().getFullYear();
  15. var birth = year - myAge;
  16. console.log( 'You were born in ' + birth + ' !' )
  17. }
  18. process.exit()
  19.  
  20. });
Add Comment
Please, Sign In to add comment