Skip to content

Instantly share code, notes, and snippets.

@jerzyyy
Last active September 20, 2018 10:16
Show Gist options
  • Save jerzyyy/86d3331f67eed7ca0f559e058c95211d to your computer and use it in GitHub Desktop.
Save jerzyyy/86d3331f67eed7ca0f559e058c95211d to your computer and use it in GitHub Desktop.
node
process.stdin.resume()
process.stdin.setEncoding('utf8')
console.log('How old are you ? ')
process.stdin.on('data', (number) => {
if (number <= 99 && Math.abs(number)) {
console.log(2018 - Math.abs(number))
}
process.exit()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment