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
2
Answers
Just do
empName + ' ' + empId
inng-bind
:adding a space using ‘ ‘ will work