Trying to filter out items with a certain property that is not null So for:
var details = [{name:\'Bill\', shortDescription: null}, {name:\'Sally\', shortDes
According to https://github.com/angular/angular.js/issues/11573 for Angular >= 1.4, the recommendation is to use '' which matches any primitive except null/undefined.
{{detail.shortDescription}}