I want to know if it is possible to use another value defining value in Angular? Let's say I have two defined values and want to define third value using first two:
angular.module('my.module').value('firstOne', ['John', 'Mary']);
angular.module('my.module').value('secondOne', ['Tom', 'Jack']);
angular.module('my.module').value('combined', [firstOne[0], secondOne[1]);
value, if not, useconstant. Follow the explanation: ilikekillnerds.com/2014/11/…