Java Script, Exercises "Object and Classes", task 4. Movies, Judge 40%
Здравейте,
Имам проблем със задачата от упражнението 4. Movies.
Нулевия тест минава, но Judge ми дава само 40% и не мога да си открия грешката.
Ще съм много благодарен, ако някой помогне.
Задача:
Условие:
4.Movies
Write a function that stores information about movies. The info will be name, director, date. You can receive several types on input:
- "addMovie {movie name}" – add the movie
- "{movie name} directedBy {director}" – check if the movie exists and then add the director
- "{movie name} onDate {date}" – check if the movie exists and then add the date
At the end print all the movies that have all the info (if the movie has no author, name or data, don’t print it) in JSON format.
Input |
Output |
[ 'addMovie Fast and Furious', 'addMovie Godfather', 'Inception directedBy Christopher Nolan', 'Godfather directedBy Francis Ford Coppola', 'Godfather onDate 29.07.2018', 'Fast and Furious onDate 30.07.2018', 'Batman onDate 01.08.2018', 'Fast and Furious directedBy Rob Cohen' ] |
{"name":"Fast and Furious","date":"30.07.2018","director":"Rob Cohen"} {"name":"Godfather","director":"Francis Ford Coppola","date":"29.07.2018"} |
Благодаря! Още са ми сложни тези обекти :)
AАз не виждам много смисъл в това да слагам обекат movie = {} . След като мога да създам инстанция с пропъртита но сетнати празни .