Is there a method to determine if a value is present in an array within an angular template? I would like something similar to this:
<div ng-class="{'myClass': 1 in [1,2,5]}">Yay</div>
If 1 is found in the array, myClass will be applied.
Is this functionality supported?
Additionally, could you provide information on the templating engine used with AngularJS? Where can I access documentation for it? My searches, including official resources, only return results related to directives or data binding.