Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('How old are you ? ')
  5. process.stdin.on('data', (check) => {
  6.  
  7. if ((isNaN(check)) || (check > 99 )) {
  8. console.log('please enter a number under 99');
  9. }
  10. else {
  11. console.log("You were born in " + (2019 - check));
  12. process.exit();
  13. }
  14.  
  15. }
  16. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement