http://qs321.pair.com?node_id=952795


in reply to Re: Short form (ternary) if else
in thread Short form (ternary) if else

Whenever I see this I usually see this right afterwards:

if ( $vxdg != '' ) {

Where they should probably be using:

if ( $vxdg ) {

Which would make the || "" in the assignment unnecessary.

Yes, I understand sometimes zero and the empty string are distinct values from undef in many business rules, but I don't think that applies as aften as many coders believe.