I have found myself in need to delete an array (I'm in a loop and I'd like to start this temporary array anew each time it iterates). I've never gone ahead and needed to delete an array before and now I'm asking for some wisdom. I remember at one time that delete @array will result in errors if under strict?
I just need to literally delete everything in it.
Hmm Just had the idea I could just loop the array and pop(). Is that the best way?