Guest User

Untitled

a guest
Mar 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding("utf8")
  3. console.log("What's your age ? ")
  4. process.stdin.on("data", age => {
  5. const year = 2018
  6. const yOb = year - age
  7. if (age < 99 && Number.isInteger(yOb) && age > 0) {
  8. console.log(yOb)
  9. } else {
  10. console.log("Wrong entry, please input a correct number")
  11. }
  12. process.exit()
  13. })
Add Comment
Please, Sign In to add comment