Я пытаюсь запустить asyn c await в for l oop, но продолжаю получать ошибку 400 (неверный запрос). Когда я явно заменяю запрос x известным значением, код работает должным образом.
const expected_res = (async function(param){
const response = await fetch("https://apione.com?x="+ param)
const data = await response.json()
....
})(param).then( (results)=>{
...
return result
}).then(async (data)=>{
//Note: data is an array
for( const id of data){
//Note: id is of type string console.log( typeof id, id instanceof String) => string, false
const response = await fetch("https://apitwo.com?x="+ id) // this is where the error occurs
const data = await response.json()
}
})