Guest User

Untitled

a guest
Mar 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding("utf8")
  3.  
  4. console.log("How old are you, my dear ?")
  5.  
  6. process.stdin.on("data", (age) => {
  7. const thisYear = 2018
  8. let birthYear
  9.  
  10.  
  11. if (!isNaN(age)) {
  12.  
  13. if (age <= 99 && age > 0) {
  14. birthYear = thisYear - age
  15. console.log("Sooooo, you were born in " + birthYear + " !")
  16. } else {
  17. console.log("I'm pretty sure you aren't a feotus! Your age must be less or equal than 99 !")
  18. }
  19.  
  20. } else {
  21. console.log("You must give me a whole number :) ")
  22. }
  23.  
  24. process.exit()
  25. })
Add Comment
Please, Sign In to add comment