Ask Question
21 January, 16:46

Define a method named roleOf that takes the name of an actor as an argument and returns that actor's role. If the actor is not in the movie return "Not in this movie.". Ex: roleOf ("Tom Hanks") returns "Forrest Gump". Hint: A method may access the object's properties using the keyword this. Ex: this. cast accesses the object's cast property.

+4
Answers (1)
  1. 21 January, 20:23
    0
    roleOf: function (actorName) {

    if (! (actorName in this. cast)) {

    return "Not in this movie.";

    }

    return this. cast[actorName];

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Define a method named roleOf that takes the name of an actor as an argument and returns that actor's role. If the actor is not in the movie ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers