Задать вопрос
@DeniSidorenko

Как использовать переменную за пределами async function?

Добрый день, подскажите пожалуйста есть такой код

const urlChannel = 'https://www.googleapis.com/youtube/v3/channels?part=snippet&id=' + channelID + '&fields=items%2Fsnippet%2Fthumbnails&key=' + apiKey;

async function getChannel(){
      const urlChannelResult = await fetch(urlChannel)
      const jsonChannel = await urlChannelResult.json()
      const authorPhoto = jsonChannel.items[0].snippet.thumbnails.high.url;
      console.log(authorPhoto)
    }
    getChannel()


Как можно использовать константу authorPhoto за пределами функции?
p.S Код что выше - находится внутри цикла map, поэтому channelID каждый раз меняется..
  • Вопрос задан
  • 688 просмотров
Подписаться 1 Простой 5 комментариев
Ответ пользователя Дмитрий Гололобов К ответам на вопрос (4)
@dGololobov
начинающий
async function getChannel(urlChannel){
      const urlChannelResult = await fetch(urlChannel)
      const jsonChannel = await urlChannelResult.json()
      const authorPhoto = jsonChannel.items[0].snippet.thumbnails.high.url
      console.log(authorPhoto
     return authorPhoto
    }
[...].map(async el => {
     const authorPhoto = await getChannel(el.url)
     // ....
})
Ответ написан