Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 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', (text) => {
  6. console.log('you were born in ' + (2019 - text))
  7. process.exit()
  8. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement