What is hidden property in Angular 2?
In Angular 2, hidden property or [hidden] is a special case binding used to hide property. It can be compared close to ng-show and ng-hide, but more powerful to bind any property types of elements.
BY Best Interview Question ON 13 May 2020
Example
<div [hidden]="!active">
Hello, this is an active area!
</div>