in reply to Optimized array
Including the trailing comma means when you add new items to the array, you don't have to do anything besides adding the new items.# before @array = ( 'dog', 'cat', 'fish' ); # after @array = ( 'dog', 'cat', 'fish' 'bird', 'rabbit' );
|
|---|