Skip to content

Instantly share code, notes, and snippets.

@CoreProgramm
Created March 20, 2020 12:57
Angular Interpolation
@Component({
selector: 'app-root',
template: `<h1>{{firstName ? firstName : 'Name is Blank'}}</h1>`
})
export class AppComponent {
firstName = '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment