InterviewSolution
Saved Bookmarks
| 1. |
What is hidden property in Angular 2? |
|
Answer» 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. Example <div [hidden]="!active"> Hello, this is an active AREA! </div> |
|