AngularJS–Part 9, Values and constants
Introduction This is a series of posts about AngularJS and our experiences with it while migrating the client of a complex enterprise application from Silverlight to HTML5/CSS/JavaScript using AngularJS as a framework. Since the migration is a very ambitious undertaken I want to try to chop the overall problem space in much smaller pieces that can be swallowed and digested much more easily by any member of my team. So far I have published the following posts in this series AngularJS – Part 1 AngularJS – Part 1, Feedback AngularJS – Part 2, the controller AngularJS – Part 3, Inheritance AngularJS – Part 4, Accessing server side resources AngularJS – Part 5, Pushing data to the server AngularJS – Part 6, Templates AngularJS – Part 7, Get ready to test AngularJS – Part 8, More choice when testing Sometimes we need some data that is globally available but at the same time we do not want to pollute the global (window) namespace with the definition for this data. ...