What is the purpose of hidden property?
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.
<div [hidden]="!user.name">My name is: {{user.name}}</div>
July 14, 2022
234
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular