Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('How old are you?')
  5.  
  6. process.stdin.on('data', (text) => {
  7.  
  8. if (isNaN(text)) {
  9.  
  10. console.log('A number is required');
  11. } else if (text > 99 || text <= 0) {
  12. console.log('Too old or too young!!')
  13. } else {
  14. let currYear = new Date().getFullYear();
  15. let calcul = currYear - text;
  16. console.log('so you are born in ' + calcul)
  17. process.exit()
  18. }
  19.  
  20. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement