What will be the value of \$keys after execution of the following code? my \$var; if (exists $var->{key1}->{key2}) { $var->{key1}->{key2} = 1; } my $keys = keys(%{$var});
Reveal answer
Fill a bubble to check yourself
What will be the value of \$keys after execution of the following code? my \$var; if (exists $var->{key1}->{key2}) { $var->{key1}->{key2} = 1; } my $keys = keys(%{$var});