I need to understand what this line of code means
app.get("/users/:id", function(req, res){
         var data = userModel.find().where('username', req);
         res.send(data);
     });
The part that I don't understand is "/users/:id", specifically the :id part. What does this syntax of http request mean?
 
     
     
    