The hidden property is used to show or hide the associated DOM element, based on an expression. It can be compared close to ng-show directive in AngularJS. Let’s say you want to show user name based on the availability of user using hidden property.
1 2 3 | <div [hidden]="!user.name"> My name is: {{user.name}} </div> |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.