Are there any functional or performance differences between the following two blocks?
<foo ng-if="bar['qux']">
<foo ng-if="bar.qux">
Does it make a difference if bar.qux
is/isn't initially defined?
Note: I fully understand how objects work in plain Javascript. This is a NOT a question about Javascript, it's about differences that might exist in AngularJS (because of parsing, or any other implementation details)