Guest User

Untitled

a guest
Sep 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 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. let year = 2018;
  7. if (age <= 99) {
  8. console.log(year - age);
  9. }
  10. else {
  11. console.log("Sorry, there is an error")
  12. }
  13. process.exit()
  14. })
Add Comment
Please, Sign In to add comment