I am using this logic for some simple template logic in angular 1.5:
<p ng-if="myData.type !== 'customer'"></p>
Would it be be faster from a performance perspective to use numbers instead of a string comparison?? ie
<p ng-if="myData.type !== '0'"></p> ?