Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
80
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('How old are you ?')
  5. process.stdin.on('data', (age) => {
  6. let ladate = new Date()
  7. if (age > 0 && age < 100) {
  8. let year = ladate.getFullYear() - age
  9. console.log('You are born in ' + year)
  10. } else {
  11. console.log('Enter your age')
  12. }
  13. process.exit()
  14. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement