Is there a way to use constants in JavaScript?
If not, what\'s the common practice for specifying variables that are used as constants?
If it is worth mentioning, you can define constants in angular using $provide.constant()
angularApp.constant('YOUR_CONSTANT', 'value');