Ребят у меня ошибка в консоли, нем могу поянть в чем
var movies = [
{title: "In Bruges",
hasWatched: true,
rating: 5
},
{
title: "Frozen",
hasWatched: false,
rating: 4.5
}
]
movies.forEach(function(moive){
var result = "You have ";
if(movie.hasWatched){
result += "watched";
} else {
result += "not seen";
}
result += "\"" + movie.title + "\" - ";
result += movie.rating + " stars";
console.log(result)
})
VM2589:3 Uncaught ReferenceError: movie is not defined
at <anonymous>:3:2
at Array.forEach (<anonymous>)
at <anonymous>:1:8