Summary
This completes our exercise of building our AngularJS Box Office app.
We can add some more features such as showing a "View Details" link, which would directly take us to the "Movie Details" page on www.imdb.com.
We can do this by passing the IMDB ID available within our JSON response and pass it to the following URL:
http://www.imdb.com/title/tt<imdb-id>
.
During this exercise, we learned about factories and how to make calls to a web service from within a factory. We also learned about the factory's asynchronous calls and how Promises are used to return the values whenever an asynchronous function has finished processing.
Finally, we finished off by styling our application to make it look like a Pinterest board.
In the next chapter, we will see how to create a Facebook app that will work as a friend's birthday reminder.