I have the following div. I am trying to add a space between two templated variables, but the single quotes keep showing up on the screen:
<b class="stylefont" ng-click="ctrl.display(1)">
{{ctrl.car}} + ' ' + {{ctrl.car2}}
</b>
You can use '& nbsp;' character (non-breaking space)
<b class="stylefont" ng-click="ctrl.display(1)">
{{ctrl.car}} {{ctrl.car2}}
</b>