In Express, how many ways are there to send data from the client side to the server side?
req.body: Use this when you want to submit a form or any sensitive data to the server without making it public. This is the preferred method.
req.params: Use ...