Guest User

Untitled

a guest
Sep 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 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', (age) => {
  6.  
  7. if(isNaN(age)) {
  8. console.log('Please enter a age')}
  9.  
  10. else if(age > 99) {
  11. console.log('Please enter a maximum age of 99')}
  12.  
  13. else if(age === 0) {
  14. console.log('You were born on 2017')}
  15.  
  16. else {
  17. console.log('You were born on ' + (2018-age))
  18. process.exit()
  19. }
  20. })
Add Comment
Please, Sign In to add comment