##
if (defined $hashtest{abc}) {
print qq{Better than 'exists'; check for the value being undef or not undef.\n};
}
####
if (defined $hashtest{abc} and $hashtest{abc}) {
print qq{Also, better than 'exists' and when I want to make sure the value is not "falsey"\n};
}