Skip to content

Instantly share code, notes, and snippets.

@AlenaNik
Last active April 4, 2019 09:20
Show Gist options
  • Save AlenaNik/0f9347371277ef46cbed799824430243 to your computer and use it in GitHub Desktop.
Save AlenaNik/0f9347371277ef46cbed799824430243 to your computer and use it in GitHub Desktop.
process.stdin.resume()
process.stdin.setEncoding('utf8')
console.log('What\'s your age ? ')
process.stdin.on('data', function (number) {
if (!Number(number)) {
console.log('eh?')
}
else if (number < 1) {
console.log('eh?')
}
else if (number >= 99){
console.log('Wroooonggg! No way you are older than 99 and know how to use this programm. Try again.');
}
else {
console.log(2018 - number)
}
process.exit();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment