if (exists $hash{key}) { ... } # True if there's a value for 'key' if (defined $hash{key}) { ... } # True if there's a value for 'key' and the value is defined. if ($hash{key}) { ... } # True if there's a value for 'key' and the value is true.