HTTP Methods
GET:
This HTTP Verb is used when you want to retrieve data from an API, essentially a literal get, getting data or some data from the API endpoint. Take a look at this example:
fetch('https://jsonplaceholder.typicode.com/todos/1') // Getting a todo o...
froilanimnida.hashnode.dev3 min read