sai_yerni_akhil

Untitled

Feb 21st, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var counter = 0;
  2. app.get('/counter',function (req,res){
  3.  
  4.     counter = counter + 1;
  5.     res.send(`CLicks ${counter.toString()}`);
  6. });
Add Comment
Please, Sign In to add comment