Angular supports three types of expressions in the ng-class directive.
1. String
<span ng-class="MyClass">Sample Text</span>
Specifying an expression that evaluates to a string tells Angular to treat it as a $scope variable. Angular will check the $scope and look for a va...