Name types of HTTP requests, what is the difference between them?
Sigiloso
GET, POST, PUT, PATCH, DELETE. GET - Gets the website, headers only. POST - Add something new. PUT - Updates data, needs the whole object, PATCH - Add a new field to an object, can also be used to update, and does not require the whole object. DELETE - Deletes data.