Hashes Sometimes you don't want that. Sometimes you want to check to see if a key is there: exists $baz{dog}; # Yes, it does. exists $baz{cow}; # No, it doesn't. # And it still doesn't. And sometimes, you just want it to disappear: delete $baz{dog}; # The cat stands alone.