Guest User

Untitled

a guest
Mar 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 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', (userAge) => {
  6. const year = 2018
  7. const yOb = year - userAge
  8.  
  9. if (userAge >=0 && userAge <= 99 && Number.isInteger(yOb)) {
  10. console.log("Your year of birth is" + " " + yOb)
  11. } else {
  12. console.log("Wrong Entry")
  13. }
  14. process.exit()
  15. })
Add Comment
Please, Sign In to add comment