Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

[false] and [0] being treated as falsy in ngShow #7110

Closed
tmodrzynski opened this issue Apr 14, 2014 · 3 comments
Closed

[false] and [0] being treated as falsy in ngShow #7110

tmodrzynski opened this issue Apr 14, 2014 · 3 comments

Comments

@tmodrzynski
Copy link

I found out that for some reason, Angular parser (which is used e.g. to evaluate ngShow conditions) treats [false] and [0] (and their string counterparts: ['false'] and ['0']) as not true. This seems like a bug to me, because not empty array should never be treated as false in my opinion - even if it contains only falsy values.

On the other hand, [undefined] and [null] are treated as truthy. Same with arrays containing more than 1 element (['false', '0'], for example).

Browsers: Firefox 28, Chrome 34
OS: Ubuntu
Angular version: 1.2.16, 1.3.0-beta.5
Reproduction: Plunkr

@lgalfaso
Copy link
Contributor

Hi, this is a duplicate of #4005. Closing this issue

@tmodrzynski
Copy link
Author

Alright, thanks and sorry for making a commotion!

@lgalfaso
Copy link
Contributor

@tmodrzynski It's all ok. This should be part of 1.3, the fact that it is not part of 1.2.x is because it needs a small breaking change.

BTW, an easy way to workaround this issue is to write <div ng-show="!!(foo)"></div>

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants