Promise Chaining Promise 객체에 then 메소드를 연속적으로 붙이는 것 console.log('START!'); fetch('https://jsonplaceholder.typicode.com/users') .then((response) => response.text()) .then((result) => { const users = JSON.parse(result); return users[0]; }) .then((user) => { console.log(user); const { address } = user; return address; }) .then((address) => { console.log(address); const { geo } = address; return geo;..