Answer:
var movie = {
name: "Avengers Endgame",
director: "Joe Russo",
composer: "Alan Silvestri",
cast: {
"Scarlett Johansson": "Black Widow",
"Chris Evans": "Captain America"
},
roleOf: function (name) {
if (typeof (this.cast[name]) !== 'undefined') {
return this.cast[name];
} else {
return "The actor is not part of this movie";
}
}
};
Explanation: