fetch('https://sheetdb.io/api/v1/j0s93lmrv0uwi')
.then(response => response.json())
.then(data => {
console.log(data);
})
.then(function(response) {
let resp = response;
console.log(resp);
console.log(resp[8].KEYWORDS); //так не выходит
})
fetch('https://sheetdb.io/api/v1/j0s93lmrv0uwi')
.then(response => response.json())
.then(data => {
console.log(data);
return data;
})
.then((response) => {
let resp = response;
console.log(resp);
console.log(resp[8].KEYWORDS); //так не выходит
})
.catch((err)=>console.log(err))