In a lot of Express HTTP verb methods, the argument of (req, res, next) is usually given for the callback function, eg:
app.get('/resources', (req, res, next) => {
})
Are these ‘standard’ bits of syntax and what do they generally refer to? I understand that ‘res’ is the server response and ‘req’ is probably short for ‘request’, but what’s their exact function here?