Angular - TypeScript in Angular
Analyze this Angular component:
Which property can be directly bound and displayed in the component's template?
export class ExampleComponent {
private hiddenValue = 'secret';
public displayValue = 'visible';
}Which property can be directly bound and displayed in the component's template?
