웹 개발에서 데이터를 비동기적으로 가져오기 위해 사용되는 JavaScript 인터페이스
Fetch API를 사용하여 데이터를 가져오기 위해서는 fetch() 함수를 호출해야한다.
Fetch API는 웹 애플리케이션에서 서버와의 데이터 통신을 쉽게 구현할 수 있는 강력한 도구다.
fetch('https://api.example.com/data')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));