Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. console.log('How old are you?')
  2. process.stdin.on('data', (age) => {
  3. if ((age<100) && (age>0)){
  4. let year = (2019-age)
  5. console.log('Your year of the birth is ' + year + ' !')
  6. }else{
  7. console.log ('Are you sure?')
  8. }
  9. process.exit()
  10. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement