.
Size: a a a
.
c
AE
•
•
•
J
•
J
•
<script>
const ser_url = 'https://api.openweathermap.org/data/2.5/onecall?lat=42.8700000&lon=74.5900000&units=metric&appid=f8b080669ffcc95d9472709463f28d20'
const xhr = new XMLHttpRequest()
xhr.open('GET', ser_url)
xhr.onload = () => {
let parce1 = JSON.parse(xhr.response)
for (let i of parce1.daily){
console.log(i.temp.max)
}
}
xhr.send()
</script>
J
ОБ
once: true
ОБ
•
•
•