Add elements to @array by referring to nonexistent element 3. : Array Assignmengt « Array « Perl






Add elements to @array by referring to nonexistent element 3.

   

# There are now 4 elements in the array. Elements 1 and 2 have undefined values.

$array[ 3 ] = "birthday";
print "@array\n\n";

   
    
    
  








Related examples in the same category

1.Put one array into another array as an element
2.Put one array into itself
3.Adding two arrays together
4.Adding more elements to an array
5.An array on the left of a list assignment receives all remaining initializers in the list on the right side of a list assignment
6.Adding array items from one array to another array
7.Assign returning array value from a function to an array
8.Assigning one array variable to another variable
9.Perform list assignments and display results