Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my $index = undef;
for(my $i=0; $i<=$#array; $i++) {
$index = $i if($array[$i] == 3);
}
print $index,"\n" if(defined $index);
Just trying to find the index number of an element in an array. say $array[3] = "29".