The {{ and }} braces allow you to inject an Angular expression inside HTML.
<b>outside {{ my_expression }} outside</b>
^^^^^^^^
In the above the text inside the {{...}} will be converted to an Angular expression.
<b>outside {{ my_expression }} outside</b>
^^^^^ ^^^^^
In the above the text outside the {{...}} will remain unchanged.
You can also use the ngBind directive to assign the result of an expression to the body of a DOM element.
<b ng-bind="mY_expression"></b>
https://docs.angularjs.org/api/ng/directive/ngBind
To show the value of varB.status just write varA.count > 1 ? varB.status : '' like this.
<b>{{varA.count > 1 ? varB.status : ''}}</b>
Alternatively, the above can be shorten to just this.
<b>{{varA.count > 1 && varB.status}}</b>
<!-- or -->
<b ng-bind="varA.count > 1 && varB.status"></b>
Or you could make the <b> optional.
<b ng-if="varA.count > 1">{{varB.status}}</b>
<b>{{ (varA.count > 1 ? varB.status : '') }} </b>