Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. function age(text) {
  5. return 2019 - text;
  6. }
  7.  
  8. console.log('How old are you ? ')
  9. process.stdin.on('data', (text) => {
  10. if (text < 99 && text > 0) {
  11. console.log(age(text));
  12. } else {
  13. console.log("write your age please");
  14. }
  15. process.exit()
  16. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement