I am using nodejs and socket to create chat application. I am able to show connected users list. I am showing all connected users list using following code.
{{#each users}}
<li><b>{{this.username}}</b></li>
{{/each}}
</ul>
Now i don't want to show current user in that list. If someone can help me to sort out this then it will great.