If I wanted to combine two functionalities in an ng-class:
1) Assign a value from a JavaScript variable like this
`ng-class="myAwesomeJavaScriptVariable"`
and
2) Conditionally apply a pre-defined class:
`ng-class = "{awesomeClass: myAwesomeBoolean}`
I know I could achieve this by using something like
class="{{myAwesomeJavaScriptVariable}}" ng-class="{awesomeClass: myAwesomeBoolean}"
Is there a way to combine these into a single ng-class expression?