๐ Web Development Notes (JavaScript Backend)
โ
HTTP Methods
HTTP methods define what action the client wants to perform on the server.
MethodPurpose
GETRetrieve data (read-only)
POSTSend data to create a resource
PUTUpdate/replace an existing resource
PATCHUpdate (partial) a resource
...
javascript-sam.hashnode.dev2 min read