Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('Quel age as tu ? ')
  5. process.stdin.on('data', (age) => {
  6.  
  7. if (age > 0 && age <= 99) {
  8. console.log(2019 - age);
  9. }
  10.  
  11.  
  12. /*console.log()*/
  13. process.exit()
  14. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement