Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 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. let birthDate = 0;
  7. if(isNaN(age)) {
  8. console.log('Not a integer !');
  9. process.exit()
  10. } else {
  11. if(age > 99 && age < 0) {
  12. console.log('Error');
  13. } else {
  14. birthDate = 2019 - age;
  15. console.log('Your birth is: ', birthDate);
  16. process.exit()
  17. }
  18. return birthDate;
  19. }
  20. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement