JavaScript Tutorial

HTTP Concepts

Protocol for transmitting resources on the web using methods like GET, POST, etc.

fetch('https://api.example.com/data', {
  method: 'POST',
  body: JSON.stringify({ key: 'value' })
});