Whether ng-showand ng-hidecompletely equivalent, except that the conditions of interpretation is denied? For instance,
ng-show
ng-hide
<div ng-show="someBoolExpr">...</div>
completely equivalent
<div ng-hide="!someBoolExpr">...</div>
Yes. And now this is how it behaves in AngularJS.
Until recently, this was different.
Previously ng-showswitched the class show, but that doesn't make much sense.
show