.then().catch().catch().finally().finally()
new Promise().finally().then().catch()
[object Error] { ... }
, а не как объект со списком свойств?const url = 'https://jsonplaceh'
function getAccess(url) {
return fetch(url).then(data => data.json()).catch(err => err)
}
async function userLogin() {
const result = await getAccess(url)
console.log(result)
}
[object Error] { ... }