I need to add space between empName
and empId
.
Since single quote and double quotes are already used, I am not able to put a space here. Can someone please help
<div <h6 ng-bind="empName +empId"> class="modal-body scrollable" </h6></div>n
I tried using $nbsp
. But it did not work
New contributor
Parikshith Kustagi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Just do empName + ' ' + empId
in ng-bind
:
<div>
<h6 ng-bind="empName + ' ' + empId" class="modal-body scrollable"></h6>
</div>