After receiving a JSON response from an API, I am binding it to form elements using ng-model.
The data returned from the API is in UPPERCASE. How can I apply a filter or CSS to capitalize the first letter of each word?
<input type="text" ng-model="string">
I want to make sure that the string bound by the value obtained through the API in the controller is converted to camel case.