#### `fetch()`
`fetch()` is a built-in browser API that lets you make network requests. It's fairly low-level, which means it can be a bit tricky to use, but it has good browser support.
#### Pros:
- Good browser support
- Allows you to make all types of HTTP requests (GET, POST, etc.)
#### Cons:
- Not as easy to use as some other libraries (like `axios()`)
- Doesn't have built-in error handling