Promise — .then(). async/await — cleaner syntax.
1// Promise2fetch().then(data => console.log(data));3 4// async/await5const data = await fetch();6console.log(data);