The number 0, the string "0", the empty string, the empty list and undefined are all False.
$a = ''; $b = 0; $result = $a eq ''; # TRUE $result = $b eq ''; # FALSE $result = length $a > 0; # FALSE |
$a = undef; $b = ''; $result = defined $a; # FALSE $result = defined $b; # TRUE |
|
| Contents |
Next |