Last active
April 4, 2019 09:20
-
-
Save AlenaNik/0f9347371277ef46cbed799824430243 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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