Programming Code Center(PCC)
[ANGULARJS]

(PCC)::[How-to-use-ng-show-Directive-in-AngularJS]::[angularjs]

File Name : index.html

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<body>

<div ng-app="">

<p ng-show="true">I am visible.</p>

<p ng-show="false">I am not visible.</p>

</div> 

</body>
</html>

Output :

I am visible.

I am not visible.