// Fetch is return promise // function fetchAlmbums() { // fetch('http://rallycoding.herokuapp.com/api/music_albums') // .then(res => res.json()) // .then(json => console.log(json)); // } // fetchAlmbums(); const fetchAlmbums = async () => { const res = await fetch('http://rallycoding.herokuapp.com/api/music_albums'); const json = await res.json(); console.log(json); }; fetchAlmbums();