AngularJS 1.x has ngCloak directive, which is used to prevent the Angular html template from being briefly displayed by the browser in its raw (uncompiled) form.
Doe
Angular2 desn' have ngCloak,
instead you can use ?. operator (use it with object).
?.
{{user?.name}}
AND/OR
you can use *ngIf (as of now)
{{name}}