A simple ng-bind like this
<div ng-bind="author.Title.Value + ' ' + author.FirstName.Value + ' ' +
author.LastName.Value"></div>
results in
Dr. null Franklin
if author.FirstName.Value is null.
Is there a simple way to replace null by an empty string (I know I can concatenate this string in the controller and return something like FullName, but I'd prefer to do it this way).