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