I am curious about the difference of returning a response and just creating a response.
I have seen a vast amount of code examples using both return res.status(xxx).json(x) and res.status(xxx).json(x).
Is anyone able to elaborate on the difference between the two?