Created
March 18, 2019 15:15
-
-
Save mehdihettak/7df178591a4a247fc1c5af2da5b99bdb to your computer and use it in GitHub Desktop.
This file contains hidden or 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('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