async function getMovieAsync() {
let response = await fetch('http://www.omdbapi.com/?t=The Matrix');
let movie = await response.json();
console.log(movie.Title);
}
getMovieAsync();
function getMovieAsync() {
fetch('https://www.omdbapi.com/?t=The Matrix')
.then(response => response.json())
.then(data => { console.log(data.Title) });
}
getMovieAsync();