Skip to content

Instantly share code, notes, and snippets.

@mehdihettak
Created March 18, 2019 15:15
Show Gist options
  • Select an option

  • Save mehdihettak/7df178591a4a247fc1c5af2da5b99bdb to your computer and use it in GitHub Desktop.

Select an option

Save mehdihettak/7df178591a4a247fc1c5af2da5b99bdb to your computer and use it in GitHub Desktop.
process.stdin.resume()
process.stdin.setEncoding('utf8')
console.log('how old are you ? ')
process.stdin.on('data', (num) => {
const year = 2019
if (num > 99) {
console.log('too late!')
}
else {
console.log(`You were born on ${year - num}`)
}
process.exit()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment