in reply to passing a value to a function
$array = [ ] ;
is sufficient. This will effectively "clear" the array. Depending on your requirements, $i=[ 0 ] , $i=undef ], and $i may be all equivalent.
Remember that undef is actually an array element. I have caught myself thinking that @array = (undef) is an empty array. Nope. It is a single-element array with the element undef!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: passing a value to a function
by busunsl (Vicar) on Jun 26, 2001 at 14:33 UTC |