My code snippet is structured as follows:
<div ng-controller="ClientCtrl">
<div ng-show="shows">hello</div>
<div ng-show="show">world</div>
<button ng-click="show=!show">click</button>
</div>
Currently, when the click button is clicked, only the second div (World) is displayed. However, I am interested in finding a way to display both div elements simultaneously when the click button is pressed. How should this be achieved?