let response;
fetch('https://api.opensea.io/api/v1/bundles?owner=0x30f2449b71a67bb22e09eee89438431686189068&limit=20&offset=0')
.then(response => response.json())
.then(response => console.log(response))
.then(bundles => alert(bundles[0].user.username));
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading '0')
at (индекс):1257
console.log()
ничего не возвращает, поэтому в следующий then()
передаётся undefined .then(response => {
console.log(response);
return response;
})
или.then(response => (console.log(response), response))