What is a template reference variable, and how would you use it?
What are the possible ways to bind component properties to an associated template?
What’s the difference between binding a value with or without square brackets, i.e.: input attr=”something” vs input [attr]=”something” ?
What does the ngFor template syntax look like?
< ul > < li *ngFor=" let val of values " > {{val}} < /li > < /ul >
What does the pipe syntax look like in Angular templates?
< div> {{ value | my-pipe : option }}< /div>
What does an interpolated string look like in a template?
< div title=" Hello {{username}} " > ... < /div >
What is < ng-container >
A grouping element that does not interfere with styles or layout (it’s analogous to curly braces in JavaScript).
What is < ng-template >
It’s an Angular element for rendering HTML when using structural directives. The ng-template itself does not render to anything but a comment directly.