The date in angular js is getting displayed like /Date(1494288000000)/ which is from asp.net list of objects.
<tr class="unread" data-ng-repeat="notification in Notifications | filter:q | startFrom:currentPage*pageSize | limitTo:pageSize">
<td class="inbox-small-cells">
<input data-ng-model="arr[notification.NotificationId]" type="checkbox" value="{{notification.NotificationId}}" ng-checked="" ng-click="" class="mail-checkbox">
</td>
<td class="view-message dont-show">{{notification.Title}}</td>
<td class="view-message ">{{notification.Message}}</td>
<td class="view-message text-right">{{notification.Date | date}}</td>
</tr>