Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
66
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. const dateNow = 2019;
  4.  
  5.  
  6.  
  7. console.log('How old are you ?')
  8. process.stdin.on('data', (age) => {
  9. let birthDate
  10. if (isNaN(age) === false && age < 99 && age < dateNow) {
  11.  
  12. birthDate = dateNow - age;
  13. console.log('You was born in ' + birthDate);
  14.  
  15. } else {
  16. console.log('Try again');
  17. }
  18.  
  19. process.exit()
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement