Factory Object Generator
The purpose of this exercise is to practice using factories as constructor functions.
Create a basic Angular interface that allows a user to fill out a form to create a user profile. When the user completes the form, the user's data will appear below the form. The user should be able to create many user profiles (ng-repeat it)
Create a factory called UserFactory
that returns a constructor function that takes a number of user profile parameters. Inject and use that factory in a controller or service to instantiate a new user.