in reply to RE: RE: My first JAPH (a project to learn more perl)
in thread My first JAPH (a project to learn more perl)

No.

$# returns the subscript of the last element in an array. So if you'd have an array called @array with six elements, $#array would return 5:
qw(one two three four five six); print $array[$#array]; # prints "six"
$j[$#j+1] = ("another");
is actually just obfuscation for this:
push @j, "another";

[~]