Is it possible to bind multiple values using ng-bind in the following manner :
<p ng-bind="instructor.first_name instructor.last_name"></p>
Every time I attempt this, I encounter the following error:
Error: $parse:syntax Syntax Error
I am aware that I can achieve the same results using curly braces
<p>{{instructor.first_name}}{{instructor.last_name}}</p>
However, I prefer to refrain from this method if possible since the remaining codebase utilizes ng-bind and I would like to maintain consistency. Thank you.