This rules
An API change: you can now use the keyword "this" inside the when() callback to refer to the model instance.
This enables the following code:
person.when(["firstName", "lastName"], function (firstName, lastName) {
this.fullName = firstName + " " + lastName;
});
Thanks to mathiasrw for this contribution.