MDN fetch:
https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
날씨 API 요청 주소:
http://www.7timer.info/bin/api.pl?lon=113.17&lat=23.09&product=astro&output=json
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
fetch(' <http://www.7timer.info/bin/api.pl?lon=113.17&lat=23.09&product=astro&output=json>').then((response) => response.json()).then((data) => console.log(data));
</script>
</body>
</html>