<div dir="ltr"><div><div><div>Is there a way to tell if any element of a hash has a defined element without having to check all the elements?<br><br></div>Such that if I have the following *potential* input from a HTML form<br><br> my $input_hash = {  <br>       <br>       FName => param('firstname'),  <br>       LName => param('lastname'),<br>       Email => param('email'),<br><br>   };<br>   <br></div>Can I check to see if any of the hash's element is defined without checking all the elements as the hash could grow in the future as the fields of the form grow.<br><br></div>Thanks<br></div>