Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('How old are u ? ')
  5. process.stdin.on('data', (age) =>
  6. {
  7. if (age > 99 )
  8. {
  9. console.log ("Vous avez saisi un chiffre supérieur a 99 !")
  10. process.exit()
  11. }
  12. /*else if (age = String)
  13. {
  14. console.log ("Vous avez saisi un charactères !")
  15. process.exit()
  16. }*/
  17. else
  18. {
  19. annee = (2019 - age)
  20. console.log('You were born as ' + annee)
  21. process.exit()
  22. }
  23. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement