skip to Main Content

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


  1. Just do empName + ' ' + empId in ng-bind:

    <div>
        <h6 ng-bind="empName + ' ' + empId" class="modal-body scrollable"></h6>
    </div>
    Login or Signup to reply.
  2. adding a space using ‘ ‘ will work

    <h6 ng-bind="empName + ' ' + empId"></h6>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search